forked from prescottprue/react-redux-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
67 lines (61 loc) · 1.32 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
'use strict'
const webpack = require('webpack')
const pkg = require('./package.json')
const env = process.env.NODE_ENV
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
const config = {
module: {
rules: [
{ test: /\.js$/, loaders: ['babel-loader'], exclude: /node_modules/ }
]
},
output: {
library: 'ReactReduxFirebase',
libraryTarget: 'umd'
},
externals: {
react: {
commonjs: 'react',
commonjs2: 'react',
amd: 'react',
root: 'React'
},
firebase: {
commonjs: 'firebase',
commonjs2: 'firebase',
amd: 'firebase',
root: 'Firebase'
}
},
plugins: []
}
if (env === 'production') {
config.plugins.push(
new webpack.optimize.UglifyJsPlugin({
comments: false,
compressor: {
pure_getters: true,
unsafe: true,
unsafe_comps: true,
warnings: false,
screw_ie8: false
}
})
)
if (process.env.SIZE) {
config.plugins.push(new BundleAnalyzerPlugin())
}
}
config.plugins.push(
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(env)
}),
new webpack.BannerPlugin(
{
banner: `${pkg.name}${env === 'production' ? '.min' : ''}.js v${pkg.version}`,
raw: false,
entryOnly: true
}
)
)
module.exports = config