Remove unused dependencies

This commit is contained in:
James Cole 2018-02-06 18:15:26 +01:00
parent b5c0ef01d9
commit 3d06f0ac14
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
3 changed files with 2 additions and 18 deletions

View File

@ -61,7 +61,6 @@
"league/commonmark": "0.*",
"league/csv": "9.*",
"league/fractal": "^0.17.0",
"mariuzzo/laravel-js-localization": "^1.4",
"pragmarx/google2fa": "2.*",
"pragmarx/google2fa-laravel": "^0.1.4",
"rcrowe/twigbridge": "0.9.*",

View File

@ -16,13 +16,9 @@
"jquery": "^3.1.1",
"laravel-mix": "^1.0",
"lodash": "^4.17.4",
"vue": "^2.5.7",
"webpack-shell-plugin": "^0.5.0"
"vue": "^2.5.7"
},
"dependencies": {
"accounting": "^0.4.1",
"font-awesome": "^4.7.0",
"lang.js": "^1.1.12",
"moment": "^2.20.1"
"font-awesome": "^4.7.0"
}
}

View File

@ -11,16 +11,5 @@ let mix = require('laravel-mix');
|
*/
const WebpackShellPlugin = require('webpack-shell-plugin');
// Add shell command plugin configured to create JavaScript language file
mix.webpackConfig({
plugins:
[
new WebpackShellPlugin({onBuildStart:['php artisan lang:js resources/assets/js/messages.js --no-lib --quiet'], onBuildEnd:[]})
]
});
mix.js('resources/assets/js/app.js', 'public/js')
.sass('resources/assets/sass/app.scss', 'public/css');