This repository was archived by the owner on May 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathwebpack.config.js
93 lines (89 loc) · 3.21 KB
/
webpack.config.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
'use strict';
var webpack = require('webpack');
var AsyncUglifyJs = require("async-uglify-js-webpack-plugin");
var path = require('path');
var fs = require("fs");
var CompressionPlugin = require('compression-webpack-plugin');
var root = __dirname + '/';
var npmRoot = root + 'node_modules/';
var nodeScripts = root + 'node_modules/';
var config = {
cache: false,
entry: {
'app': path.resolve(__dirname, 'output/DemoApp.WithRedux/index.js')
},
output: {
path: path.resolve(__dirname, 'demo/scripts/release'),
filename: '[name].min.js',
sourceMapFilename: '[name].min.js.map',
library: ['DemoApp','redux']
},
module: {
loaders: [
]
},
resolve: {
extensions: ['', '.js', '.es6', '.es6.js', '.jsx', '.json', '.ts', '.css', '.html', '.ract'],
modulesDirectories: ['node_modules', 'bower_components','output'],
alias: {
}
},
plugins: [
new CompressionPlugin({
asset : '{file}.gz',
algorithm : 'gzip',
regExp : /\.js$|\.html$/,
threshold : 10240,
minRatio : 0.8
}),
new webpack.ProvidePlugin({
'fetch': 'imports?this=>global!exports?global.fetch!whatwg-fetch'
})
]
};
if (process.env.NODE_ENV === 'production') {
config.plugins = config.plugins.concat([
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production')
}
}),
new AsyncUglifyJs({
delay: 5000,
minifyOptions: {
mangle: false,
warnings: true,
compress: {
sequences : true, // join consecutive statemets with the “comma operator”
properties : true, // optimize property access: a["foo"] → a.foo
dead_code : true, // discard unreachable code
drop_debugger : true, // discard “debugger” statements
unsafe : false, // some unsafe optimizations (see below)
conditionals : true, // optimize if-s and conditional expressions
comparisons : true, // optimize comparisons
evaluate : true, // evaluate constant expressions
booleans : true, // optimize boolean expressions
loops : true, // optimize loops
unused : true, // drop unused variables/functions
hoist_funs : true, // hoist function declarations
hoist_vars : false, // hoist variable declarations
if_return : true, // optimize if-s followed by return/continue
join_vars : true, // join var declarations
cascade : true, // try to cascade `right` into `left` in sequences
side_effects : true, // drop side-effect-free statements
warnings : true, // warn about potentially dangerous optimizations/code
}
},
logger: false,
done: function(path, originalContents) { }
}),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.OccurenceOrderPlugin(true)
]);
} else {
config.devtool = '#source-map';
config.debug = true;
}
config.useMemoryFs = true;
config.progress = true;
module.exports = config;