A Gulp plugin for http://jsnice.org
npm install https://github.com/heroandtn3/gulp-jsnice.git --save-dev
jsnice(options)
Check available options here: https://github.com/brettlangdon/jsnice
var jsnice = require('gulp-jsnice');
gulp.task('jsnice', function() {
return gulp.src('src/core.js')
.pipe(jsnice({
suggest: false,
types: false
}))
.pipe(rename('core.pretty.js'))
.pipe(gulp.dest('src/'));
});
MIT