forked from furious-luke/react-weaver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
130 lines (125 loc) · 2.84 KB
/
webpack.config.js
File metadata and controls
130 lines (125 loc) · 2.84 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
const webpack = require('webpack')
const path = require('path')
const fs = require('fs')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const TerserPlugin = require('terser-webpack-plugin')
const {CleanWebpackPlugin} = require('clean-webpack-plugin')
module.exports = (env, argv) => {
const {
hmr,
environment,
mode,
release
} = argv
const config = (
!release
? (
hmr
? getHmrConfig(mode)
: getDevelopmentConfig(mode)
)
: getProductionConfig(mode)
)
return config
}
function getHmrConfig(mode) {
const config = getDevelopmentConfig(mode)
return {
...config,
entry: ['react-hot-loader/patch', './examples/index'],
devServer: {
host: '0.0.0.0',
port: 3000,
publicPath: '/',
compress: true,
hot: true,
},
}
}
function getDevelopmentConfig(mode = 'development') {
const config = getBaseConfig()
return {
...config,
entry: './examples/index',
mode,
devtool: 'eval-source-map',
output: {
filename: 'index.js',
path: path.resolve(__dirname, './dist'),
publicPath: '/',
}
}
}
function getProductionConfig(mode = 'production') {
const config = getBaseConfig()
return {
...config,
entry: './examples/index',
output: {
filename: 'index.js',
path: path.resolve(__dirname, './dist'),
publicPath: '/static/',
},
mode,
optimization: {
minimizer: [
new TerserPlugin({
test: /\.js$/,
parallel: true,
sourceMap: true,
terserOptions: {
ecma: 6,
compress: {
pure_funcs: [
'console.debug',
],
},
},
}),
],
},
plugins: [
// TODO: Just want the environment, probably should factor out
// into a function.
config.plugins[1],
new CleanWebpackPlugin(),
]
}
}
function getBaseConfig() {
return {
target: 'web',
module: {
rules: [
{
test: /\.(jsx?|tsx?)$/,
exclude: /node_modules/,
use: 'ts-loader',
},
{
test: /\.(jpe?g|png|woff|woff2|eot|ttf|otf|svg)$/,
loader: 'url-loader?limit=100000',
}
]
},
resolve: {
mainFields: ['browser', 'module', 'main'],
extensions: ['.wasm', '.mjs', '.js', '.jsx', '.ts', '.tsx', '.json'],
alias: {
'react-weaver': path.resolve(__dirname, '../src'),
'react-dom': '@hot-loader/react-dom',
},
},
plugins: [
new HtmlWebpackPlugin({
meta: {
viewport: 'width=device-width initial-scale=1'
}
}),
// TODO: Keep this at index 1, but we could use a nicer way to
// share this with other things like Storybook.
new webpack.EnvironmentPlugin([
])
]
}
}