-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathwebpack.test.js
71 lines (60 loc) · 1.61 KB
/
webpack.test.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
67
68
69
70
71
var ChunkManifestPlugin = require('chunk-manifest-webpack-plugin'),
glob = require('glob'),
path = require('path'),
webpack = require('webpack')
// Test files
var spec = ['./test/helpers/browser/js/runner.js']
spec = spec.concat(glob.sync('./test/unit/**/*.js'))
spec = spec.concat(['./test/integration/views/base.js'])
var config = {
entry: {
dragon: [
'./src/dragon.js'
],
spec
},
output: {
filename: '[name].js',
path: path.join(__dirname, './test/helpers/browser/js')
},
module: {
loaders: [
{
test: /\.js$/,
loader: 'babel',
exclude: [/bower_components/, /node_modules\/(?!dragon*)/ ],
query: {
presets : ['es2015', 'stage-0'],
}
},
{ test: /\.json$/, loader: 'json-loader' }
]
},
node: {
dns: 'empty',
fs: 'empty',
net: 'empty'
},
resolve: {
root: __dirname,
extensions: ['', '.js', '.json'],
modulesDirectories: ['node_modules'],
alias: {
'babel-runtime': path.join(__dirname, 'node_modules/babel-runtime')
}
},
resolveLoader: {
root: path.join(__dirname, 'node_modules')
},
plugins: [
new webpack.IgnorePlugin(/node_modules\/^paradigm/),
//new webpack.NormalModuleReplacementPlugin(/^(net|dns)$/, path.resolve(__dirname, 'shims/blank.js')),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.CommonsChunkPlugin('vendor', 'vendor.js')
/*new ChunkManifestPlugin({
filename: "manifest.json",
manifestVariable: "webpackManifest"
})*/
]
}
module.exports = config