-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.config.js
113 lines (107 loc) · 3.1 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
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
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
// TODO!!
// const HtmlWebpackPlugin = require('html-webpack-plugin');
// const CleanWebpackPlugin = require('clean-webpack-plugin');
module.exports = env => {
env = env || {} // undefined if webpack called without `--env`
return {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: __dirname + '/dist',
},
module: {
rules: [
{
test: /\.rs$/,
use: {
loader: 'rust-wasm-loader',
options: {
// The path to the webpack output relative to the project root
path: '',
release: env.production || env.release,
}
}
},
{
test: /\.css$/,
use: [
'style-loader',
'css-loader'
]
}
]
},
// The .wasm 'glue' code generated by Emscripten requires these node builtins,
// but won't actually use them in a web environment. We tell Webpack to not resolve those
// require statements since we know we won't need them.
externals: {
'fs': true,
'path': true,
// TODO!: This list was manually extracted from bundle.js.map with the help of
// `source-map-explorer`. It saves >200KB in the final bundle. How to do this better?
// Shouln't tree shaking take care of it?
"asn1.js": true,
// "base64-js": true,
"bn.js": true,
"brorand": true,
"browserify-aes": true,
"browserify-cipher": true,
"browserify-des": true,
"browserify-rsa": true,
"browserify-sign": true,
"buffer": true,
"buffer-xor": true,
"cipher-base": true,
"core-util-is": true,
"create-ecdh": true,
"create-hash": true,
"create-hmac": true,
"crypto-browserify": true,
"des.js": true,
"diffie-hellman": true,
"elliptic": true,
// "events": true,
"evp_bytestokey": true,
"hash-base": true,
"hash.js": true,
"hmac-drbg": true,
// "ieee754": true,
"indexof": true,
// "inherits": true,
// "isarray": true,
"md5.js": true,
"miller-rabin": true,
"minimalistic-assert": true,
"minimalistic-crypto-utils": true,
"node-libs-browser": true,
"parse-asn1": true,
"pbkdf2": true,
"process": true,
"process-nextick-args": true,
"public-encrypt": true,
"randombytes": true,
"readable-stream": true,
"ripemd160": true,
"safe-buffer": true,
"setimmediate": true,
"sha.js": true,
"stream-browserify": true,
"timers-browserify": true,
"util-deprecate": true,
"vm-browserify": true,
},
plugins: env.production ? [
new UglifyJSPlugin({
sourceMap: true
})
] : [],
devtool: env.production ? undefined : 'source-map',
devServer: {
contentBase: __dirname + "/dist/",
overlay: true, // shows Rust compiler errors in the browser
open: false, // opens http://localhost:8080 in browser
compress: false, // gzip compression
}
}
}