Skip to content

Commit

Permalink
fix: correct syntax in gulpfile
Browse files Browse the repository at this point in the history
  • Loading branch information
amit-bansil committed Aug 12, 2016
1 parent c683576 commit a513659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function babelize(taskName, dir) {
return gulp.src(srcPattern)
.pipe(sourcemaps.init())
.pipe(babel({
presets: [ 'es2015', 'stage-2' ],
presets: [ 'es2015', 'stage-2' ]
}))
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest(destDir));
Expand Down

0 comments on commit a513659

Please sign in to comment.