Skip to content

Releases: ym-project/gulp-esbuild

v0.13.0

28 Nov 18:55
Compare
Choose a tag to compare
⚠️ 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

Full Changelog: v0.12.1...v0.13.0

v.0.12.1

v0.11.2

v0.11.1

05 Mar 07:49
Compare
Choose a tag to compare

v0.11.0

26 Dec 08:25
Compare
Choose a tag to compare

v0.10.8

25 Dec 09:18
Compare
Choose a tag to compare

Changes

  • fix(#11): give preference to user's outfile option

v0.10.7

07 Dec 10:07
Compare
Choose a tag to compare

🙏 Thanks @manuth for the contribution

Changes

  • fix(#17): fix type declarations for ES module
  • fix(#17): allow more useful types to be imported

v0.10.6

v0.10.5

v0.10.4