This repository has been archived by the owner on Dec 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
80 lines (76 loc) · 2.21 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
// Copyright (c) 2018 Zilliqa
// This source code is being disclosed to you solely for the purpose of your participation in
// testing Zilliqa. You may view, compile and run the code for that purpose and pursuant to
// the protocols and algorithms that are programmed into, and intended by, the code. You may
// not do anything else with the code without express permission from Zilliqa Research Pte. Ltd.,
// including modifying or publishing the code (or any part of it), and developing or forming
// another public or private blockchain network. This source code is provided ‘as is’ and no
// warranties are given as to title or non-infringement, merchantability or fitness for purpose
// and, to the extent permitted by law, all liability for your use of the code is disclaimed.
// Base webpack configuration - to be used in ALL environments.
/* eslint import/no-extraneous-dependencies: ["error", { devDependencies: true }] */
const path = require('path')
const webpack = require('webpack')
const UglifyJs = require('uglifyjs-webpack-plugin')
const baseConfig = {
entry: {
Webz: ['./lib/index.js']
},
mode: 'production',
module: {
rules: [
{
test: /\.js$/
// use: {
// loader: 'babel-loader',
// options: {
// babelrc: true,
// cacheDirectory: true
// }
// }
}
]
},
devtool: 'source-map',
resolve: {
extensions: ['.js']
}
}
const clientConfig = {
...baseConfig,
optimization: {
minimizer: [
new UglifyJs({
uglifyOptions: {
compress: true,
mangle: true,
toplevel: false,
output: {
beautify: false,
comments: false
}
},
// include: /Webz\.js$/,
parallel: true,
sourceMap: true
})
]
},
output: {
libraryTarget: 'umd',
library: 'webz.js',
filename: '[name].browser.js',
path: path.join(__dirname, 'dist')
}
}
const serverConfig = {
...baseConfig,
target: 'node',
output: {
filename: '[name].server.js',
library: 'webz.js',
libraryTarget: 'commonjs2',
path: path.join(__dirname, 'dist')
}
}
module.exports = [baseConfig, clientConfig, serverConfig]