1
0
mirror of synced 2025-12-07 14:08:06 +08:00
Files
eruda/script/webpack.release.js
2016-10-25 16:57:12 +08:00

17 lines
387 B
JavaScript

var webpack = require('webpack');
exports = require('./webpack.dev');
exports.output.filename = 'eruda.min.js';
exports.devtool = false;
exports.plugins = exports.plugins.concat([
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
},
comments: /eruda/
}),
new webpack.optimize.DedupePlugin()
]);
module.exports = exports;