v0.13.0
⚠️ This release contains esbuild backwards-incompatible changes ⚠️
Removed pipe
flag. Now plugin works with both file system files and virtual files by default.
Previous code:
const { createGulpEsbuild } = require('gulp-esbuild);
const gulpEsbuild = createGulpEsbuild({ pipe: true });
// ...
// ...
src(...).pipe(gulpEsbuild(...))
Current code:
const gulpEsbuild = require('gulp-esbuild');
// ...
// ...
src(...).pipe(gulpEsbuild(...))
What's Changed
- fix(#16): fix esbuild interaction with gulp's virtual files by @ym-project in #27
Full Changelog: v0.12.1...v0.13.0