看守任務
config.paths.html
表示 HTML 檔案的路徑。
gulp.task("watch", function() {
gulp.watch(config.paths.html, ["html"]);
});
該任務也應新增到預設值:
gulp.task("default", ["html", "watch"]);
config.paths.html
表示 HTML 檔案的路徑。
gulp.task("watch", function() {
gulp.watch(config.paths.html, ["html"]);
});
該任務也應新增到預設值:
gulp.task("default", ["html", "watch"]);