forked from publishpress/publishpress-series
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.prod.js
44 lines (44 loc) · 1.5 KB
/
webpack.prod.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
const merge = require('webpack-merge');
const AssetsPlugin = require('assets-webpack-plugin');
const path = require('path');
let common = require('./webpack.common.js');
const webpack = require('webpack');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
common.forEach((config, index) => {
if (common[index].configName === 'base') {
common[index].plugins = [
new CleanWebpackPlugin(['assets/dist']),
new ExtractTextPlugin('os-[name].[contenthash].dist.css'),
new webpack.HashedModuleIdsPlugin(),
new webpack.optimize.CommonsChunkPlugin({
name: 'runner',
minChunks: Infinity,
}),
]
}
common[index] = merge(config,{
devtool: 'source-map',
plugins: [
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('production')
}
}),
new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
output: {
comments: false
}
}),
new AssetsPlugin({
filename: 'build-manifest.json',
path: path.resolve(__dirname, 'assets/dist'),
update: true
})
]
});
//delete temporary named config item so no config errors
delete common[index].configName;
});
module.exports = common;