Skip to content

hemanth/gulp-jstransform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Usage

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

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