forked from pydata/pydata-sphinx-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.dev.js
39 lines (38 loc) · 1.08 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
const path = require('path');
const merge = require('webpack-merge');
const exec = require('child_process').exec;
const WatchPlugin = require('webpack-watch-files-plugin').default;
const ShellPlugin = require('webpack-shell-plugin');
const common = require('./webpack.common.js');
module.exports = merge(common, {
mode: 'development',
watch: true,
devServer: {
contentBase: path.join(__dirname, 'docs/_build/html'),
watchContentBase: true,
compress: false,
port: 1919,
hot: false,
liveReload: true,
publicPath: '/_static/',
writeToDisk: true,
},
plugins: [
new WatchPlugin({
files: [
'./docs/**/*.rst',
'./docs/**/*.py',
'./pydata_sphinx_theme/**/*.html',
'./pydata_sphinx_theme/**/*.css',
// watching the generated macros causes vicious cycles
'!./pydata_sphinx_theme/static/*.html',
],
}),
new ShellPlugin({
onBuildEnd: ['make -C docs clean html'],
// dev=false here to force every build to trigger make, the default is
// first build only.
dev: false,
}),
],
});