forked from iVis-at-Bilkent/cytoscape.js-context-menus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
33 lines (31 loc) · 828 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
const path = require('path');
const pkg = require('./package.json');
const camelcase = require('camelcase');
const process = require('process');
const env = process.env;
const NODE_ENV = env.NODE_ENV;
const PROD = NODE_ENV === 'production';
const SRC_DIR = "./src";
module.exports = {
entry: path.join(__dirname, SRC_DIR, 'index.js'),
output: {
path: path.join(__dirname),
filename: pkg.name + '.js',
library: camelcase(pkg.name),
libraryTarget: 'umd',
},
mode: 'production',
// devtool: PROD ? false : 'inline-source-map',
optimization: {
minimize: PROD ? true: false,
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: 'babel-loader'
}
]
}
};