forked from yocontra/react-responsive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
75 lines (72 loc) · 1.39 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
const path = require('path')
const webpack = require('webpack')
const env = new webpack.EnvironmentPlugin({
NODE_ENV: 'development'
})
const uglify = new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
parallel: true,
cache: true
})
const uglifyLite = new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
cache: true,
parallel: true,
compress: {
dead_code: true,
unused: true
},
mangle: false,
output: {
beautify: true
}
})
const filename = process.env.BUILD_MODE === 'umd'
? './dist/react-responsive.js'
: './dist/react-responsive.min.js'
const plugins = process.env.BUILD_MODE === 'umd-min'
? [ env ]
: [ env ]
module.exports = {
entry: './src/index.js',
output: {
filename,
sourceMapFilename: `${filename}.map`,
libraryTarget: 'umd',
library: 'MediaQuery'
},
devtool: 'source-map',
externals: {
'react': {
commonjs: 'react',
commonjs2: 'react',
amd: 'react',
root: 'React'
},
'react-dom': {
commonjs: 'react-dom',
commonjs2: 'react-dom',
amd: 'react-dom',
root: 'ReactDOM'
}
},
resolve: {
modules: [
path.resolve('src'),
'node_modules'
]
},
module: {
rules: [
{
test: [ /\.js$/, /\.jsx$/ ],
use: 'babel-loader',
exclude: /node_modules/
}
]
},
node: {
process: false,
setImmediate: false
}
}