1
0
mirror of synced 2025-12-13 18:34:52 +08:00
Files
eruda/script/webpack.release.js
2017-03-08 11:19:58 +08:00

16 lines
346 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/
})
]);
module.exports = exports;