Gulp Filter Versions Save

Filter files in a `vinyl` stream

v9.0.1

6 months ago

v9.0.0

6 months ago

v8.0.0

9 months ago

Breaking

  • Require Node.js 16 a3e98dd
  • This package is now pure ESM. Please read this.

https://github.com/sindresorhus/gulp-filter/compare/v7.0.0...v8.0.0

v7.0.0

3 years ago

Breaking

  • Require Node.js 12 b51e40f
  • Require Gulp 4 ffda884

Fixes

  • Fix behavior for matching paths outside cwd (#92) 2e5d663

https://github.com/sindresorhus/gulp-filter/compare/v6.0.0...v7.0.0

v6.0.0

4 years ago

v3.0.0

8 years ago

There were issues with restoring a stream in 2.0.0 so we had to rethink the approach. In 3.0.0 you have to be explicit about what you want when you create the filter stream. Want to be able to restore the files using a restore stream later on? Cool, pass in {restore: true} in the filter options. The restore stream is now a property on the filter stream instead of a function. We've also added support for using the filtered files as a file source, similar to gulp.src(), see the passthrough option.