forked from NeilFraser/JS-Interpreter
-
Notifications
You must be signed in to change notification settings - Fork 8
/
webpack.config.js
60 lines (57 loc) · 1.67 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
const path = require('path');
const webpack = require('webpack');
function interpreterConfig(
mode = 'development',
filename = 'js-interpreter.js',
devtool = false
) {
return {
mode,
entry : path.resolve(__dirname, 'src', 'js-interpreter.js'),
output: {
filename,
globalObject : 'this',
library : 'JSInterpreter',
libraryExport: 'default',
libraryTarget: 'umd',
path : path.resolve(__dirname, 'lib'),
},
plugins: [
new webpack.ProvidePlugin({
acorn: path.resolve(__dirname, 'original-repo', 'acorn.js')
})
],
devtool: devtool ? 'cheap-source-map' : false,
};
}
function cliConfig(
mode = 'development',
filename = 'js-interpreter.js',
devtool = false
) {
return {
mode,
entry : path.resolve(__dirname, 'src', 'cli.js'),
target: 'node',
output: {
filename,
path : path.resolve(__dirname, 'lib'),
},
plugins: [
new webpack.ProvidePlugin({
acorn: path.resolve(__dirname, 'original-repo', 'acorn.js')
}),
new webpack.BannerPlugin({
banner: '#!/usr/bin/env node',
raw : true,
}),
],
devtool: devtool ? 'cheap-source-map' : false,
};
}
module.exports = [
interpreterConfig('development', 'js-interpreter.js', false),
interpreterConfig('production', 'js-interpreter.min.js', true),
cliConfig('development', 'cli.js', false),
cliConfig('production', 'cli.min.js', true),
];