remove unnecessary files

master
Maksim 2019-01-29 00:32:17 -08:00
rodzic fcd4266bee
commit 6527005520
3 zmienionych plików z 1 dodań i 34 usunięć

Wyświetl plik

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2017 Maksim Surguy
Copyright (c) 2019 Maksim Surguy
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

Wyświetl plik

@ -1,6 +0,0 @@
{
"/dist/app.js": "/dist/app.js",
"/dist/app.css": "/dist/app.css",
"/dist/imageAnalyzer.js": "/dist/imageAnalyzer.js",
"/dist/index.html": "/dist/index.html"
}

Wyświetl plik

@ -1,27 +0,0 @@
let mix = require('laravel-mix');
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel application. By default, we are compiling the Sass
| file for your application, as well as bundling up your JS files.
|
*/
mix.copy('src/index.html', 'dist/index.html' );
mix.js('src/app.js', 'dist/')
.sass('src/app.scss', 'dist/');
mix.js('src/imageAnalyzer.js', 'dist/');
//mix.browserSync('webcam-example.dev');
const LiveReloadPlugin = require('webpack-livereload-plugin');
mix.webpackConfig({
plugins: [
new LiveReloadPlugin()
]
});