0.1.0 • Published 5 years ago

gulp-plumber-notifier v0.1.0

Weekly downloads
303
License
MIT
Repository
github
Last release
5 years ago

gulp-plumber-notifier

Prevent pipe breaking, log and notify using gulp-plumber and node-notifier

npm.io

npm.io

Usage

var plumberNotifier = require('gulp-plumber-notifier');

gulp.src('./src/**/*.js')
  .pipe(plumberNotifier())
  .pipe(sourcemaps.init())
  .pipe(babel({ modules: 'umd' }))
  .pipe(sourcemaps.write())
  .pipe(gulp.dest('./dist'))
  .pipe(connect.reload());