gulp-belch

A gulp wrapper for the popular belch program.

Usage no npm install needed!

<script type="module">
  import gulpBelch from 'https://cdn.skypack.dev/gulp-belch';
</script>

README

gulp-belch

A gulp wrapper for the popular belch program.

Install

npm install --save-dev gulp-belch

Usage

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