aboutsummaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2020-03-07 18:29:00 +0100
committerHakim El Hattab <hakim.elhattab@gmail.com>2020-03-07 18:29:00 +0100
commit7f94a79c275f6274e42252e3abbccccedb530297 (patch)
treeeaafcd193caa675d67f9b270b4a49d424fa0d01b /gulpfile.js
parentd4a030f953df0e34ad288ab12fe9b8d09e5cade9 (diff)
downloadfosdem-2021-minimalism-presentation-7f94a79c275f6274e42252e3abbccccedb530297.tar
fosdem-2021-minimalism-presentation-7f94a79c275f6274e42252e3abbccccedb530297.tar.gz
add babel-eslint, link all files
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/gulpfile.js b/gulpfile.js
index bdf2344..b1f5d0e 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -62,7 +62,7 @@ gulp.task('css', gulp.parallel('css-themes', 'css-print', 'css-core'))
gulp.task('test', gulp.series(
- () => gulp.src(['./js/reveal.js', 'gulpfile.js']).pipe(eslint()).pipe(eslint.format())
+ () => gulp.src(['./js/**', 'gulpfile.js']).pipe(eslint()).pipe(eslint.format())
// () => gulp.src(['./test/*.html']).pipe(qunit())
))
@@ -90,7 +90,7 @@ gulp.task('serve', () => {
livereload: true
})
- gulp.watch(['js/**/*'], gulp.series('js', 'test'))
+ gulp.watch(['js/**'], gulp.series('js', 'test'))
gulp.watch([
'css/theme/source/*.{sass,scss}',