-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
75 lines (68 loc) · 1.55 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
'use strict'
const path = require('path')
const webpack = require('webpack')
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
const CompressionPlugin = require('compression-webpack-plugin')
var nodeExternals = require('webpack-node-externals')
var browser_config = {
mode: 'production',
entry: {
'@dataparty/api': './src/index-browser.js'
},
devtool: 'cheap-module-source-map',
optimization: {
minimize: true
},
output: {
library: ['DataParty'],
libraryTarget: 'var',
path: path.join(__dirname, 'dist'),
filename: 'dataparty-browser.js'
},
node: {
fs: 'empty',
net: 'empty',
dns: 'empty',
yargs: 'empty',
readline: 'empty',
child_process:'empty',
'@dataparty/bouncer-db': 'empty'
},
plugins: [
new CompressionPlugin(),
new webpack.DefinePlugin({
'process.env.ENV': JSON.stringify('browser')
})/*,
new BundleAnalyzerPlugin()*/
]
}
var node_config = {
target: 'node',
externals: [nodeExternals({
whitelist: ["@dataparty/bouncer-model", "@dataparty/crypto",
],
modulesFromFile: true
})],
mode: 'development',
entry: {
'@dataparty/api': './src/index.js'
},
devtool: 'cheap-module-source-map',
output: {
library: "",
libraryTarget: 'commonjs',
path: path.join(__dirname, 'dist'),
filename: 'dataparty-node.js'
},
resolve: {
modules: [
'node_modules',
],
extensions: ['.ts', '.tsx', '.js', '.json'],
symlinks: true,
}
}
module.exports = [
browser_config,
//node_config
]