aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.babel.js
diff options
context:
space:
mode:
Diffstat (limited to 'gulpfile.babel.js')
-rw-r--r--gulpfile.babel.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/gulpfile.babel.js b/gulpfile.babel.js
index 1f3c42a3d..c6fe6975a 100644
--- a/gulpfile.babel.js
+++ b/gulpfile.babel.js
@@ -245,7 +245,8 @@ export function processJavascripts() {
245 [ 245 [
246 paths.javascripts.src, 246 paths.javascripts.src,
247 ], 247 ],
248 { since: gulp.lastRun(processJavascripts) }) 248 { since: gulp.lastRun(processJavascripts) },
249 )
249 .pipe( 250 .pipe(
250 babel({ 251 babel({
251 comments: false, 252 comments: false,
@@ -262,7 +263,8 @@ export function processTypescripts() {
262 [ 263 [
263 paths.typescripts.src, 264 paths.typescripts.src,
264 ], 265 ],
265 { since: gulp.lastRun(processTypescripts) }) 266 { since: gulp.lastRun(processTypescripts) },
267 )
266 .pipe(tsProject()) 268 .pipe(tsProject())
267 .js 269 .js
268 .pipe( 270 .pipe(