npm install gulp-jsdcgulp-jsdc
====
compiler es6 to es5 by jsdc
https://github.com/army8735/jsdc




js
var gJsdc = require('gulp-jsdc');
gulp.task('jsdc', function() {
gulp.src('*/.js')
.pipe(gJsdc())
.pipe(gulp.dest('dist'))
});
`
$3
`js
var gJsdc = require('gulp-jsdc');
gulp.task('jsdc', function() {
gulp.src('*/.js')
.pipe(gJsdc({
define: true
}))
.pipe(gulp.dest('dist'))
});
`
> It will wrap define for CommonJS module when config define: true`