Skip to content

Commit b77e379

Browse files
author
吴浩麟
committed
fix: TypeError: Cannot read property 'watchFileSystem' of undefined
1 parent 2f40c1e commit b77e379

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

lib/WebPlugin.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,14 @@ class WebPlugin {
8686
// user may use Default template
8787
if (typeof options.template === 'string') {
8888
// watch for file changed event
89-
compiler.hooks.watchRun.tap('WebPlugin', (watching, done) => {
89+
compiler.hooks.watchRun.tap('WebPlugin', (watching) => {
9090
// 发生变化的文件列表
91-
const changedTimes = watching.compiler.watchFileSystem.watcher.mtimes;
91+
const changedTimes = watching.watchFileSystem.watcher.mtimes;
9292
// 如果 HTML 模版文件发生了变化就重新编译模版文件
9393
if (changedTimes[options.template] !== undefined) {
9494
// html template file has changed, re build this.htmlDocument
9595
this.buildHtmlDocument();
9696
}
97-
done();
9897
});
9998

10099
// add html template file to file dependencies after compile, to let webpack watch html template file change and emit watch-run event

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-webpack-plugin",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "web plugin for webpack, alternatives for html-webpack-plugin, use HTML as entry",
55
"keywords": [
66
"webpack",

0 commit comments

Comments
 (0)