Work on event creation form

This commit is contained in:
2020-03-16 22:35:48 +00:00
parent 88b34740f6
commit 7de778a57e
12 changed files with 333 additions and 387 deletions

View File

@@ -33,7 +33,7 @@ function styles(done) {
}
function scripts() {
return gulp.src(['RIGS/static/js/src/**/.js',
return gulp.src(['RIGS/static/js/src/**/*.js',
'node_modules/jquery/dist/jquery.js',
'node_modules/popper.js/dist/umd/popper.js',
'node_modules/raven-js/dist/raven.js', //TODO Upgrade to Sentry
@@ -83,6 +83,5 @@ function watchFiles() {
//gulp.watch("gulpfile.js", gulp.parallel(styles, scripts)); TODO This causes a reload loop
}
exports.css = styles;
exports.js = scripts;
exports.build = gulp.parallel(styles, scripts);
exports.watch = gulp.parallel(watchFiles, browserSync);