forked from cytoscape/cytoscape.js-elk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
37 lines (36 loc) · 854 Bytes
/
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
/* eslint-env node */
const path = require('path');
const webpack = require('webpack');
module.exports = (env, argv) => {
const PROD = argv.mode === 'production';
return {
entry: './src/index.js',
devServer: {
publicPath: '/dist/',
},
output: {
path: path.join(__dirname, 'dist'),
filename: 'cytoscape-elk.js',
library: 'cytoscapeElk',
libraryTarget: 'umd',
libraryExport: 'default',
globalObject: 'this',
},
module: {
rules: [{ test: /\.js$/, exclude: /node_modules/, use: 'babel-loader' }],
},
optimization: {
minimize: false,
},
externals: PROD
? {
'elkjs/lib/elk.bundled.js': {
commonjs: 'elkjs',
commonjs2: 'elkjs',
amd: 'elkjs',
root: 'ELK',
},
}
: [],
};
};