Skip to content

Update dependency gulp-esbuild to v0.15.0 - #755

Open
renovate[bot] wants to merge 1 commit into
trunkfrom
renovate/gulp-esbuild-0.x
Open

Update dependency gulp-esbuild to v0.15.0#755
renovate[bot] wants to merge 1 commit into
trunkfrom
renovate/gulp-esbuild-0.x

Conversation

@renovate

@renovate renovate Bot commented Jun 7, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
gulp-esbuild (source) 0.14.10.15.0 age confidence

Release Notes

ym-project/gulp-esbuild (gulp-esbuild)

v0.15.0

Compare Source

⚠️ This release contains backwards-incompatible changes ⚠️

Now plugin has only named imports (previously there was default import):

- import gulpEsbuild, { createGulpEsbuild } from 'gulp-esbuild'
+ import { gulpEsbuild, createGulpEsbuild } from 'gulp-esbuild'

Also you need to pass entryPoints always:

- src('./src/**.js').pipe(gulpEsbuild()).dest(dist('./dist'));
+ src('./src/**.js').pipe(gulpEsbuild({ entryPoints: ['src/entry.js'] })).dest(dist('./dist'));

Why?
Previous version of the plugin had behavior: every gulp's virtual file was esbuild's entryPoint. It means the plugin set entryPoints itself. But it has limitations to works with virtual files correctly.
For example we have 3 virtual files and one entryPoint which import other two files. If we had 3 separate entrypoints, we would get 3 separate output files, not one that includes the other 2.

Be sure, another gulp's libraries for webpack, rollup, ... do the same.

What's Changed

  • add full support of gulp's virtual files
  • migrated to typescript
  • migrated to https://oxc.rs/ from eslint

Full Changelog: ym-project/gulp-esbuild@v0.14.1...v0.15.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM (* 0-3 * * *)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/gulp-esbuild-0.x branch 11 times, most recently from 66859f3 to acec99a Compare June 13, 2026 14:16
@renovate
renovate Bot force-pushed the renovate/gulp-esbuild-0.x branch 9 times, most recently from 94c98c5 to 2337190 Compare June 19, 2026 15:59
@renovate
renovate Bot force-pushed the renovate/gulp-esbuild-0.x branch 9 times, most recently from 822da80 to 2dad07a Compare June 27, 2026 10:53
@renovate
renovate Bot force-pushed the renovate/gulp-esbuild-0.x branch from 2dad07a to bda38ce Compare June 29, 2026 17:19
@renovate
renovate Bot force-pushed the renovate/gulp-esbuild-0.x branch 6 times, most recently from ec7642f to 842fbdb Compare July 12, 2026 08:58
@renovate
renovate Bot force-pushed the renovate/gulp-esbuild-0.x branch 9 times, most recently from f119a94 to ca9bd39 Compare July 19, 2026 05:36
@renovate
renovate Bot force-pushed the renovate/gulp-esbuild-0.x branch 13 times, most recently from 5a804a8 to 8ccadb7 Compare July 27, 2026 08:56
@renovate
renovate Bot force-pushed the renovate/gulp-esbuild-0.x branch from 8ccadb7 to 065b669 Compare July 28, 2026 06:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants