gulp-belch
v1.0.2
Published
> A gulp wrapper for the popular [belch](https://github.com/jessegavin/belch) program.
Readme
gulp-belch
A gulp wrapper for the popular belch program.
Install
npm install --save-dev gulp-belchUsage
//gulpfile.js
var gulp = require('gulp');
var belch = require('gulp-belch');
gulp.task('build', function() {
return gulp.src('*.js')
.pipe(gulp.dest('./public'))
.pipe(belch());
});