-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathwebpack.config.js
46 lines (37 loc) · 876 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
34
35
36
37
38
39
40
41
42
43
44
45
46
var fs = require('fs');
var path = require('path');
var webpack = require('webpack');
var EXERCISES_DIR = path.resolve(process.cwd(), 'exercises');
function buildEntries() {
return fs.readdirSync(EXERCISES_DIR).reduce(function (entries, dir) {
var file = path.join(EXERCISES_DIR, dir, 'index.js');
if (fs.existsSync(file)) {
entries[dir] = file;
}
return entries;
}, {});
}
module.exports = {
entry: buildEntries(),
output: {
filename: '[name].js',
chunkFilename: '[id].chunk.js',
path: 'exercises/__build__',
publicPath: '/__build__/'
},
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel',
query: {
presets: ['react', 'es2015']
}
}
]
},
plugins: [
new webpack.optimize.CommonsChunkPlugin('shared.js')
]
};