-
Notifications
You must be signed in to change notification settings - Fork 229
/
webpack.dev.js
80 lines (73 loc) · 1.57 KB
/
webpack.dev.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
72
73
74
75
76
77
78
79
80
const path = require('path')
const chalk = require('chalk');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
mode: 'development',
module: {
rules: [{
test: /worker/,
loader: 'worker-loader',
options: { inline: 'no-fallback' }
}, {
include: [
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'examples')
],
test: /\.js$/
}, {
test: /\.css$/,
use: [{
loader: 'style-loader'
}, {
loader: 'css-loader'
}]
}]
},
resolve: {
extensions: ['.js'],
alias: {
CodeMirror: path.join(__dirname, 'node_modules', 'codemirror')
}
},
plugins: [
new HtmlWebpackPlugin({
template: path.join(__dirname, 'examples', 'app.html'),
filename: 'app.html',
inject: true,
chunks: [ 'app' ],
}),
new HtmlWebpackPlugin({
template: path.join(__dirname, 'examples', 'app-styles.html'),
filename: 'app-styles.html',
inject: true,
chunks: [ 'styles' ],
}),
{
apply: (compiler) => {
compiler.hooks.entryOption.tap('MyPlugin', (context, entry) => {
console.log('-'.repeat(78));
console.log('Applications:');
console.log(chalk.bold(chalk.underline(chalk.cyan('http://localhost:8080/app.html'))));
console.log(chalk.bold(chalk.underline(chalk.cyan('http://localhost:8080/app-styles.html'))));
console.log('-'.repeat(78));
});
}
}
],
entry: {
app: [
'./examples/app.js',
'./src/mergely'
],
styles: [
'./examples/app-styles.js',
'./src/mergely'
]
},
output: {
filename: '[name].mergely.js'
},
optimization: {
chunkIds: 'named'
}
}