-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
webpack.config.js
53 lines (46 loc) · 1.24 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
'use strict'
var path = require('path')
var args = require('minimist')(process.argv.slice(2))
var _ = require('lodash')
// List of allowed environments
var allowedEnvs = ['dev', 'dist', 'test']
// Set the correct environment
var env
if (args._.length > 0 && args._.indexOf('start') !== -1) {
env = 'test'
} else if (args.env) {
env = args.env
} else {
env = 'dev'
}
process.env.REACT_WEBPACK_ENV = env
// Get available configurations
var configs = {
base: require(path.join(__dirname, 'cfg/base')),
dev: require(path.join(__dirname, 'cfg/dev')),
dist: require(path.join(__dirname, 'cfg/dist')),
test: require(path.join(__dirname, 'cfg/test'))
}
/**
* Get an allowed environment
* @param {String} env
* @return {String}
*/
function getValidEnv(env) {
var isValid = env && env.length > 0 && allowedEnvs.indexOf(env) !== -1
return isValid ? env : 'dev'
}
/**
* Build the webpack configuration
* @param {String} env Environment to use
* @return {Object} Webpack config
*/
function buildConfig(env) {
var usedEnv = getValidEnv(env)
return _.mergeWith(configs['base'], configs[usedEnv], function (objValue, srcValue) {
if (_.isArray(objValue)) {
return objValue.concat(srcValue)
}
})
}
module.exports = buildConfig(env)