forked from dgjohnson/metricslib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
66 lines (63 loc) · 1.36 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
const webpack = require('webpack');
const path = require("path");
const BabiliPlugin = require("babili-webpack-plugin");
const env = process.env.WEBPACK_ENV;
module.exports = {
context: path.resolve(__dirname),
entry: {
metricslib: ['index']
},
target: 'node',
output: {
filename: env === 'build' ? '[name].min.js' : '[name].js',
library: '[name]',
libraryTarget: 'umd',
path: path.resolve(__dirname, 'lib'),
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: [{
loader: 'babel-loader',
options: {
presets: [
['env', {
targets: {
browsers: ['last 2 versions'],
node: 4.3
},
//debug: true,
//useBuiltIns: true
}],
'stage-2'
],
plugins: [
'transform-runtime'
]
}
}]
}
]
},
resolve: {
extensions: ['*', '.js'],
modules: [
path.resolve(__dirname, 'src'),
path.join(__dirname, 'node_modules')
],
alias: {
}
},
devtool: "source-map",
externals: {
'aws-sdk': 'aws-sdk',
'proxy-polyfill': 'proxy-polyfill'
},
plugins: [
]
};
if (env === 'build') {
module.exports.plugins.push(new BabiliPlugin({}, {}))
}