gulp-jstransform
v1.0.0
Published
gulp plugin to transform ES6 to ES5
Downloads
12
Maintainers
Readme
Gulp jstransform
Usage
var jstransform = require('gulp-jstransfrom');
gulp.task('jstransform', function() {
gulp.src('./src/*.js')
.pipe(jstransform().on('error', gutil.log))
.pipe(gulp.dest('./public/'))
});