forked from visgl/react-map-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
88 lines (73 loc) · 1.56 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
76
77
78
79
80
81
82
83
84
85
86
87
88
const {resolve} = require('path');
const webpack = require('webpack');
const BASE_CONFIG = {
// Bundle the transpiled code in dist
entry: {
lib: resolve('./src/index.js')
},
// Generate a bundle in dist folder
output: {
path: resolve('./dist'),
filename: 'index.js',
library: 'react-map-gl',
libraryTarget: 'umd'
},
// Exclude any non-relative imports from resulting bundle
externals: [
/^[a-z\-0-9]+$/
],
resolve: {
alias: {
'react-map-gl': resolve('./dist')
}
},
module: {
rules: []
},
plugins: [
new webpack.optimize.UglifyJsPlugin({
output: {
comments: false
}
})
]
};
const BROWSER_CONFIG = Object.assign({}, BASE_CONFIG, {
devServer: {
stats: {
warnings: false
},
quiet: true
},
// Bundle the tests for running in the browser
entry: {
'test-browser': resolve('./test/browser.js')
},
// Generate a bundle in dist folder
output: {
path: resolve('./dist'),
filename: '[name]-bundle.js'
},
devtool: '#inline-source-maps',
resolve: {
alias: {
// Build tests against source rather than an installed version of react-map-gl
'react-map-gl': resolve('./src'),
// Use mapbox prebuilt
'mapbox-gl$': resolve('./node_modules/mapbox-gl/dist/mapbox-gl.js'),
webworkify: 'webworkify-webpack-dropin'
}
},
externals: [],
node: {
fs: 'empty'
},
plugins: []
});
module.exports = env => {
const config = BASE_CONFIG;
if (env && env.browser) {
return BROWSER_CONFIG;
}
return config;
};