mirror of
https://github.com/liriliri/eruda.git
synced 2026-02-14 10:27:47 +08:00
17 lines
393 B
JavaScript
17 lines
393 B
JavaScript
var webpack = require('webpack');
|
|
|
|
exports = require('./../webpack.config');
|
|
|
|
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; |