From 6f11054994894ad7164f11b4c43d1ac13ee827a0 Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Sun, 15 Nov 2015 08:10:54 -0600 Subject: [PATCH] Add trailing comma --- tasks/gulp-babelify.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/gulp-babelify.js b/tasks/gulp-babelify.js index a5bd7af203..7516594fee 100644 --- a/tasks/gulp-babelify.js +++ b/tasks/gulp-babelify.js @@ -10,7 +10,7 @@ gulp.task('browserify', function () { let bundler = browserify({ entries: './common/index.js', debug: true, - transform: [[babel, { compact: false }]] + transform: [[babel, { compact: false }]], }); return bundler.bundle()