Skip to content

Bump gulp-esbuild from 0.14.1 to 0.15.0 - #642

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/gulp-esbuild-0.15.0
Open

Bump gulp-esbuild from 0.14.1 to 0.15.0#642
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/gulp-esbuild-0.15.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 1, 2026

Copy link
Copy Markdown
Contributor

Bumps gulp-esbuild from 0.14.1 to 0.15.0.

Release notes

Sourced from gulp-esbuild's releases.

v0.15.0

⚠️ 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

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [gulp-esbuild](https://github.com/ym-project/gulp-esbuild) from 0.14.1 to 0.15.0.
- [Release notes](https://github.com/ym-project/gulp-esbuild/releases)
- [Commits](ym-project/gulp-esbuild@v0.14.1...v0.15.0)

---
updated-dependencies:
- dependency-name: gulp-esbuild
  dependency-version: 0.15.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 1, 2026
@socket-security

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Addednpm/​gulp-esbuild@​0.15.09210010087100

View full report

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants