minify vendor

This commit is contained in:
Kyle Spearrin 2017-11-09 14:28:18 -05:00
parent 7cecdfc828
commit 04ff1e6fba
3 changed files with 5 additions and 14 deletions

View File

@ -1,4 +1,4 @@
require('jquery');
window.$ = window.jQuery = require('jquery');
require('bootstrap');
require('papaparse');
require('clipboard');

View File

@ -61,11 +61,6 @@ module.exports = {
new CleanWebpackPlugin([
path.resolve(__dirname, 'dist/*')
]),
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery'
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'popup/vendor',
chunks: ['popup/app'],

View File

@ -1,6 +1,6 @@
const merge = require('webpack-merge');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
//const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const common = require('./webpack.common.js');
const webpack = require('webpack');
@ -29,13 +29,9 @@ module.exports = merge(common, {
]
},
plugins: [
// UglifyJS does not support es6
// ref: https://github.com/webpack/webpack/issues/2972#issuecomment-261705632
//new UglifyJSPlugin({
// uglifyOptions: {
// mangle: false
// }
//}),
new UglifyJSPlugin({
include: ['vendor.js', 'popup/vendor.js']
}),
new webpack.SourceMapDevToolPlugin({
filename: '[name].js.map',
include: ['background.js', 'popup/app.js']