babelbabelcompact`false`
`gulp-babel`
gulp.task('babeltrance', function() {
gulp.src('./babel-before/*.js', ['babeltrance'])
.pipe(plumber())
.pipe(babel({
presets: ['es2015'],
compact: false, // ←
}))
.pipe(gulp.dest('./'));
});
* * *
gulp-changedgulp-newer