Skip to content

Commit

Permalink
chore(deps): update dependency esbuild to ^0.17.2 (#1354)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [esbuild](https://togithub.com/evanw/esbuild) | [`^0.17.1` ->
`^0.17.2`](https://renovatebot.com/diffs/npm/esbuild/0.17.1/0.17.2) |
[![age](https://badges.renovateapi.com/packages/npm/esbuild/0.17.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/esbuild/0.17.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/esbuild/0.17.2/compatibility-slim/0.17.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/esbuild/0.17.2/confidence-slim/0.17.1)](https://docs.renovatebot.com/merge-confidence/)
|

---

### ⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the
Dependency Dashboard for more information.

---

### Release Notes

<details>
<summary>evanw/esbuild</summary>

###
[`v0.17.2`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#&#8203;0172)

[Compare
Source](https://togithub.com/evanw/esbuild/compare/v0.17.1...v0.17.2)

- Add `onDispose` to the plugin API
([#&#8203;2140](https://togithub.com/evanw/esbuild/issues/2140),
[#&#8203;2205](https://togithub.com/evanw/esbuild/issues/2205))

If your plugin wants to perform some cleanup after it's no longer going
to be used, you can now use the `onDispose` API to register a callback
for cleanup-related tasks. For example, if a plugin starts a
long-running child process then it may want to terminate that process
when the plugin is discarded. Previously there was no way to do this.
Here's an example:

    ```js
    let examplePlugin = {
      name: 'example',
      setup(build) {
        build.onDispose(() => {
          console.log('This plugin is no longer used')
        })
      },
    }
    ```

These `onDispose` callbacks will be called after every `build()` call
regardless of whether the build failed or not as well as after the first
`dispose()` call on a given build context.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

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

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/fwouts/previewjs).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xMDQuMiIsInVwZGF0ZWRJblZlciI6IjM0LjEwNC4yIn0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] committed Jan 17, 2023
1 parent 6a32f73 commit 42a03e3
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 78 deletions.
2 changes: 1 addition & 1 deletion integrations/cli/package.json
Expand Up @@ -30,7 +30,7 @@
"chalk": "^5.2.0",
"commander": "^9.5.0",
"cross-env": "^7.0.3",
"esbuild": "^0.17.1",
"esbuild": "^0.17.2",
"open": "^8.4.0",
"rimraf": "^4.0.4",
"shx": "^0.3.4",
Expand Down
2 changes: 1 addition & 1 deletion integrations/intellij/daemon/package.json
Expand Up @@ -18,7 +18,7 @@
},
"devDependencies": {
"@previewjs/daemon": "*",
"esbuild": "^0.17.1",
"esbuild": "^0.17.2",
"rimraf": "^4.0.4",
"shx": "^0.3.4",
"ts-node-dev": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion integrations/vscode/package.json
Expand Up @@ -97,7 +97,7 @@
"@previewjs/daemon": "*",
"@types/vscode": "^1.71.2",
"cross-env": "^7.0.3",
"esbuild": "^0.17.1",
"esbuild": "^0.17.2",
"exclusive-promises": "^1.0.3",
"execa": "^5.1.1",
"ovsx": "^0.8.0",
Expand Down

0 comments on commit 42a03e3

Please sign in to comment.