add dot prefix in gulp build

This commit is contained in:
tcbutler320 2021-06-03 18:15:42 -04:00
parent 48172ccda5
commit b18edcd23e

View file

@ -188,7 +188,7 @@ task("sass", function () {
});
task("static", function () {
return src("./static/**/*").pipe(dest("./dist/"));
return src("./static/**/*", { dot: true }).pipe(dest("./dist/"));
});
//copies refactored js files to dist/gen so that they can be required by dist/gen/index.js