-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
executable file
·98 lines (89 loc) · 2.29 KB
/
webpack.config.js
File metadata and controls
executable file
·98 lines (89 loc) · 2.29 KB
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
94
95
96
const webpack = require("webpack");
const path = require("path");
const env = require("yargs").argv.env; // use --env with webpack 2
var libraryName = "logger";
const paths = {
context: path.join(__dirname, "./src/"),
output: path.join(__dirname, "./"),
lib: path.join(__dirname, "./lib"),
entry: {
'demo/demo': "./demo/index.js"
}
};
const libPath = "lib/index";
paths.entry[libPath] = "./lib/index.js";
const config = {
context: paths.context,
entry: paths.entry,
output: {
path: paths.output,
filename: "[name].js",
library: libraryName,
libraryTarget: "umd",
umdNamedDefine: true
},
module: {
rules: [
{
test: /\.(js)$/,
loader: "babel-loader",
exclude: /node_modules/
}
]
},
resolve: { // In resolve we tell Webpack where to look for modules. as of Webpack ^2.0 important to give node modules folder too
extensions: [".js"],
modules: [paths.context, paths.lib, "node_modules"],
},
plugins: [
new webpack.optimize.CommonsChunkPlugin({
children: true,
async: true
}),
new webpack.optimize.MinChunkSizePlugin({
minChunkSize: 2500
})
]
};
if (env === 'prod'){
config.devtool = "hidden-source-map";
config.plugins.push(new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false,
drop_console: true,
drop_debugger: true,
screw_ie8: true
},
output: {
comments: false
},
sourceMap: false,
beautify: false,
mangle: {
screw_ie8: true,
keep_fnames: true
},
comments: false
}));
config.plugins.push(new webpack.LoaderOptionsPlugin({
minimize: true,
debug: false
}));
} else {
config.devtool = "#inline-source-map";
config.devServer = {
contentBase: paths.context,
publicPath: '/',
historyApiFallback: {
index: '/'
},
inline: true,
port: 8080,
stats: {
chunks: false,
children: false
},
clientLogLevel: 'info'
}
}
module.exports = config;