forked from theintern/intern
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.ts
More file actions
63 lines (60 loc) · 1.2 KB
/
webpack.config.ts
File metadata and controls
63 lines (60 loc) · 1.2 KB
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
import { join } from 'path';
import { optimize, Configuration } from 'webpack';
const common: Configuration = {
devtool: 'source-map',
module: {
rules: [
{
test: /_(?:build|tests)\//,
use: 'umd-compat-loader'
},
{
test: /@dojo\//,
use: 'umd-compat-loader'
},
{
test: /\.styl$/,
use: ['style-loader', 'css-loader', 'stylus-loader']
}
],
noParse: /benchmark\/benchmark.js/
},
stats: {
assets: true,
errors: true,
hash: false,
modules: false,
timings: false,
version: false,
warnings: true
}
};
if (process.env['NODE_ENV'] === 'production') {
common.plugins = [new optimize.UglifyJsPlugin()];
}
module.exports = [
{
...common,
entry: {
intern: './_build/src/browser/intern.src.js',
remote: './_build/src/browser/remote.src.js',
config: './_build/src/browser/config.src.js'
},
output: {
filename: '[name].js',
path: join(__dirname, '_build/src/browser')
}
},
{
...common,
entry: {
intern: './_tests/src/browser/intern.src.js',
remote: './_tests/src/browser/remote.src.js',
config: './_tests/src/browser/config.src.js'
},
output: {
filename: '[name].js',
path: join(__dirname, '_tests/src/browser')
}
}
];