Dark theme palette shenanigans

I just can't decide
This commit is contained in:
2020-06-25 18:32:21 +01:00
parent be48dd31f9
commit a4ef69af3c
4 changed files with 479 additions and 683 deletions

View File

@@ -82,9 +82,9 @@ function browserSyncReload(done) {
}
function watchFiles() {
gulp.watch("RIGS/static/scss/**/*.scss", gulp.series(styles, browserSyncReload));
gulp.watch("RIGS/static/scss/**/*.scss", styles);
// TODO This prevents reload looping, but means we don't reload if new third party scripts are added
gulp.watch("RIGS/static/js/src/*", gulp.series(scripts, browserSyncReload));
gulp.watch("RIGS/static/js/src/*", scripts);
gulp.watch(['templates/**/*.html', 'RIGS/templates/**/*.html', 'assets/templates/**/*.html', 'versioning/templates/**/*.html'], browserSyncReload);
}