fix(cli): build site failed

This commit is contained in:
陈嘉涵 2019-12-13 10:13:17 +08:00
parent 8fc7e6e611
commit 2dba8c9455

View File

@ -12,8 +12,12 @@ const PLUGIN_NAME = 'VantCliSitePlugin';
export class VantCliSitePlugin { export class VantCliSitePlugin {
apply(compiler: Compiler) { apply(compiler: Compiler) {
if (process.env.NODE_ENV === 'production') {
compiler.hooks.beforeCompile.tapPromise(PLUGIN_NAME, this.genSiteEntry);
} else {
compiler.hooks.watchRun.tapPromise(PLUGIN_NAME, this.genSiteEntry); compiler.hooks.watchRun.tapPromise(PLUGIN_NAME, this.genSiteEntry);
} }
}
genSiteEntry() { genSiteEntry() {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {