├── .editorconfig ├── .gitattributes ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── errorHandling.js ├── fixtures ├── index.js └── test.js ├── passThrough.js ├── pipePatching.js ├── pipeUnpatching.js └── util └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/gulp-plumber/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | temp/ 4 | coverage 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/gulp-plumber/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/gulp-plumber/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/gulp-plumber/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/gulp-plumber/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/gulp-plumber/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/gulp-plumber/HEAD/package.json -------------------------------------------------------------------------------- /test/errorHandling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/gulp-plumber/HEAD/test/errorHandling.js -------------------------------------------------------------------------------- /test/fixtures/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/test.js: -------------------------------------------------------------------------------- 1 | test.js -------------------------------------------------------------------------------- /test/passThrough.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/gulp-plumber/HEAD/test/passThrough.js -------------------------------------------------------------------------------- /test/pipePatching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/gulp-plumber/HEAD/test/pipePatching.js -------------------------------------------------------------------------------- /test/pipeUnpatching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/gulp-plumber/HEAD/test/pipeUnpatching.js -------------------------------------------------------------------------------- /test/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/gulp-plumber/HEAD/test/util/index.js --------------------------------------------------------------------------------