Skip to content

Commit

Permalink
chore(deps): update dependency esbuild to ^0.18.20 (#1903)
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.18.19` ->
`^0.18.20`](https://renovatebot.com/diffs/npm/esbuild/0.18.19/0.18.20) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/esbuild/0.18.20?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/esbuild/0.18.20?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/esbuild/0.18.19/0.18.20?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/esbuild/0.18.19/0.18.20?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>evanw/esbuild (esbuild)</summary>

###
[`v0.18.20`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#01820)

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

- Support advanced CSS `@import` rules
([#&#8203;953](https://togithub.com/evanw/esbuild/issues/953),
[#&#8203;3137](https://togithub.com/evanw/esbuild/issues/3137))

CSS `@import` statements have been extended to allow additional trailing
tokens after the import path. These tokens sort of make the imported
file behave as if it were wrapped in a `@layer`, `@supports`, and/or
`@media` rule. Here are some examples:

    ```css
    @&#8203;import url(foo.css);
    @&#8203;import url(foo.css) layer;
    @&#8203;import url(foo.css) layer(bar);
    @&#8203;import url(foo.css) layer(bar) supports(display: flex);
@&#8203;import url(foo.css) layer(bar) supports(display: flex) print;
    @&#8203;import url(foo.css) layer(bar) print;
    @&#8203;import url(foo.css) supports(display: flex);
    @&#8203;import url(foo.css) supports(display: flex) print;
    @&#8203;import url(foo.css) print;
    ```

You can read more about this advanced syntax
[here](https://developer.mozilla.org/en-US/docs/Web/CSS/@&#8203;import).
With this release, esbuild will now bundle `@import` rules with these
trailing tokens and will wrap the imported files in the corresponding
rules. Note that this now means a given imported file can potentially
appear in multiple places in the bundle. However, esbuild will still
only load it once (e.g. on-load plugins will only run once per file, not
once per import).

</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://developer.mend.io/github/fwouts/previewjs).

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] committed Aug 8, 2023
1 parent b19d27e commit cea5204
Show file tree
Hide file tree
Showing 4 changed files with 136 additions and 86 deletions.
2 changes: 1 addition & 1 deletion integrations/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"chalk": "^5.3.0",
"commander": "^11.0.0",
"cross-env": "^7.0.3",
"esbuild": "^0.18.19",
"esbuild": "^0.18.20",
"nodemon": "^3.0.1",
"open": "^9.1.0",
"rimraf": "^5.0.1",
Expand Down
2 changes: 1 addition & 1 deletion integrations/intellij/daemon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"devDependencies": {
"@previewjs/daemon": "workspace:*",
"@previewjs/loader": "workspace:*",
"esbuild": "^0.18.19",
"esbuild": "^0.18.20",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
}
Expand Down
2 changes: 1 addition & 1 deletion integrations/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
"@previewjs/loader": "workspace:*",
"@types/vscode": "^1.71.2",
"cross-env": "^7.0.3",
"esbuild": "^0.18.19",
"esbuild": "^0.18.20",
"exclusive-promises": "^1.0.3",
"execa": "^7.2.0",
"ovsx": "^0.8.2",
Expand Down
Loading

0 comments on commit cea5204

Please sign in to comment.