Added navbar options (#906)

This commit is contained in:
Sodbileg Gansukh
2022-11-11 11:30:32 +08:00
committed by GitHub
parent 38426cd9e6
commit cf30adacce
11 changed files with 466 additions and 239 deletions

View File

@ -90,8 +90,9 @@ function zipper(done) {
}
const cssWatcher = () => watch('assets/css/**', css);
const jsWatcher = () => watch('assets/js/**', js);
const hbsWatcher = () => watch(['*.hbs', 'partials/**/*.hbs'], hbs);
const watcher = parallel(cssWatcher, hbsWatcher);
const watcher = parallel(cssWatcher, jsWatcher, hbsWatcher);
const build = series(css, js);
exports.build = build;