A gulp plugin that caches intermediate file transformations to speed up build pipelines by skipping repeated expensive steps (e.g., Babel compilation). Version 2.0.0 wraps the file-transform-cache module and integrates as a gulp plugin. It allows specifying a cache file path and an array of transform streams. This plugin is useful for large projects where re-running transforms on unchanged files is wasteful, offering a simple drop-in enhancement to existing gulp pipelines. No recent activity; releases are sporadic.
npm install gulp-file-transform-cacheNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to add transform caching to a gulp pipeline with Babel as an example.
Monitor for updates or switch to alternative cache plugins.
Provide absolute path using path.resolve() for consistency.
Always wrap single transform in array for clarity: transformStreams: [babel()]
Use gulp 3 compatible pipelines or fork the package.
Delete cache file manually when updating transform libraries.
Run `npm install gulp-util --save-dev` or switch to a plugin that doesn't depend on it.
Wrap the stream in an array: transformStreams: [babel()]
Use absolute path: gftc({ path: path.resolve('.babelCache'), ... })