From 65270055207bd92e8a77ccf26789f07bfbeea378 Mon Sep 17 00:00:00 2001 From: Maksim Date: Tue, 29 Jan 2019 00:32:17 -0800 Subject: [PATCH] remove unnecessary files --- LICENSE | 2 +- mix-manifest.json | 6 ------ webpack.mix.js | 27 --------------------------- 3 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 mix-manifest.json delete mode 100644 webpack.mix.js diff --git a/LICENSE b/LICENSE index d731198..41e2adb 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/mix-manifest.json b/mix-manifest.json deleted file mode 100644 index 1e055d3..0000000 --- a/mix-manifest.json +++ /dev/null @@ -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" -} \ No newline at end of file diff --git a/webpack.mix.js b/webpack.mix.js deleted file mode 100644 index 8819742..0000000 --- a/webpack.mix.js +++ /dev/null @@ -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() - ] -}); -