JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 163710
  • Score
    100M100P100Q167016F

A plumber, for gulp pipeline

Package Exports

  • gulp-plumber

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-plumber) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

gulp-plumber NPM version Build Status Dependency Status

A plumber for gulp

This plugin is fixing issue with Node Streams piping.

For explanations, read this small article.

Usage

First, install gulp-plumber as a development dependency:

npm install --save gulp-plumber

Then, add it to your gulpfile.js:

var plumber = require('gulp-plumber');
var coffee = require('gulp-coffee');

gulp.src('./src/*.ext')
    .pipe(plumber())
    .pipe(coffee())
    .pipe(gulp.dest('./dist'));

API

plumber(options)

Returns Stream, that fixes pipe methods on Streams that are next in pipeline.

License

MIT License