-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
63 lines (56 loc) · 1.46 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
'use strict';
const fs = require('fs');
const path = require('path');
const webpack = require('webpack');
const EXAMPLES_DIR = path.join(__dirname, 'examples');
function buildEntries() {
return fs.readdirSync(EXAMPLES_DIR).reduce(function (entries, dir) {
if (dir === 'build') {
return entries;
}
const isDraft = dir.charAt(0) === '_';
const isDirectory = fs.lstatSync(path.join(EXAMPLES_DIR, dir)).isDirectory();
if (!isDraft && isDirectory) {
entries[dir] = path.join(EXAMPLES_DIR, dir, 'app.js');
}
return entries;
}, {});
}
module.exports = {
devtool: 'eval',
entry: buildEntries(),
output: {
filename: '[name].js',
chunkFilename: '[id].chunk.js',
path: path.join(__dirname, 'examples/__build__'),
publicPath: '/__build__/',
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
},
{
test: /\.css$/,
use: [ 'style-loader', 'css-loader' ],
},
],
},
resolve: {
extensions: ['.webpack-loader.js', '.web-loader.js', '.loader.js', '.js', '.jsx'],
modules: [
path.resolve(__dirname, 'node_modules'),
'node_modules'
],
alias: {
'react': 'preact-compat/dist/preact-compat',
'react-dom/server': 'preact-compat/server',
'react-dom': 'preact-compat/dist/preact-compat',
},
},
plugins: [
new webpack.optimize.CommonsChunkPlugin({ name: 'shared' }),
]
};