-
-
Notifications
You must be signed in to change notification settings - Fork 556
/
webpack.config.js
62 lines (56 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
'use strict'
const webpack = require('webpack')
const pkg = require('./package.json')
const env = process.env.NODE_ENV
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin')
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer')
.BundleAnalyzerPlugin
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
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'
},
'prop-types': {
commonjs: 'prop-types',
commonjs2: 'prop-types',
amd: 'prop-types',
root: 'PropTypes'
}
},
plugins: [new LodashModuleReplacementPlugin()]
}
if (process.env.SIZE) {
config.plugins.push(new BundleAnalyzerPlugin())
}
if (env === 'production') {
config.plugins.push(new UglifyJsPlugin())
}
config.plugins.push(
new webpack.BannerPlugin({
banner: `${pkg.name}${env === 'production' ? '.min' : ''}.js v${
pkg.version
}`,
raw: false,
entryOnly: true
})
)
module.exports = config