-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
75 lines (67 loc) · 1.56 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
64
65
66
67
68
69
70
71
72
73
74
75
const path = require('path');
const { execSync } = require('child_process');
const chokidar = require('chokidar');
const HtmlWebpackPlugin = require('html-webpack-plugin');
function debounce(func, timeout) {
let timer;
return (...args) => {
clearTimeout(timer);
timer = setTimeout(() => func.apply(this, args), timeout);
};
}
function build() {
execSync('npm run build', (error, stdout, stderr) => console.log(stdout));
}
class OpenApiPlugin {
apply(compiler) {
const watcher = chokidar.watch(path.resolve(__dirname, 'openapi'));
watcher.on('change', debounce((event, path) => {
build();
}), 200);
build();
compiler.hooks.beforeCompile.tapAsync('MyPlugin', (params, callback) => {
if (!compiler.watchMode) {
watcher.close();
}
callback();
});
}
}
module.exports = {
mode: 'development',
entry: {
app: require.resolve('./docs/index'),
},
resolve: {
extensions: ['.ts', '.js'],
},
module: {
rules: [
{
test: /\.yaml$/,
use: [
{ loader: 'json-loader' },
{ loader: 'yaml-loader' },
],
},
{
test: /\.css$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' },
],
},
],
},
plugins: [
new OpenApiPlugin(),
new HtmlWebpackPlugin({
favicon: path.resolve(__dirname, 'docs/favicon.png'),
template: path.resolve(__dirname, 'docs/index.html'),
}),
],
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'docs'),
},
};