npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

gulp-jstransform

1.0.0

@hemanth

npmHomeRepoSnykSocket
Downloads:7
$ npm install gulp-jstransform
DailyWeeklyMonthlyYearly

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/'))
});