gulp-jstransform icon indicating copy to clipboard operation
gulp-jstransform copied to clipboard

Gulp plugin to transform ES6 to ES5.

Gulp jstransform

Usage

var jstransform = require('gulp-jstransform');

gulp.task('jstransform', function() {
  gulp.src('./src/*.js')
    .pipe(jstransform().on('error', gutil.log))
    .pipe(gulp.dest('./public/'))
});