Commit 43b1b9c
authored
fix(deps): Update dependency prettier to v3.8.3 (#899)
This PR contains the following updates:
| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
| [prettier](https://prettier.io) ([source](https://redirect.github.com/prettier/prettier)) | [`3.8.1` → `3.8.3`](https://renovatebot.com/diffs/npm/prettier/3.8.1/3.8.3) |  |  |
---
### Release Notes
<details>
<summary>prettier/prettier (prettier)</summary>
### [`v3.8.3`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#383)
[Compare Source](https://redirect.github.com/prettier/prettier/compare/3.8.2...3.8.3)
[diff](https://redirect.github.com/prettier/prettier/compare/3.8.2...3.8.3)
##### SCSS: Prevent trailing comma in `if()` function ([#​18471](https://redirect.github.com/prettier/prettier/pull/18471) by [@​kovsu](https://redirect.github.com/kovsu))
<!-- prettier-ignore -->
```scss
// Input
$value: if(sass(false): 1; else: -1);
// Prettier 3.8.2
$value: if(
sass(false): 1; else: -1,
);
// Prettier 3.8.3
$value: if(sass(false): 1; else: -1);
```
### [`v3.8.2`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#382)
[Compare Source](https://redirect.github.com/prettier/prettier/compare/3.8.1...3.8.2)
[diff](https://redirect.github.com/prettier/prettier/compare/3.8.1...3.8.2)
##### Angular: Support Angular v21.2 ([#​18722](https://redirect.github.com/prettier/prettier/pull/18722), [#​19034](https://redirect.github.com/prettier/prettier/pull/19034) by [@​fisker](https://redirect.github.com/fisker))
Exhaustive typechecking with `@default never;`
<!-- prettier-ignore -->
```html
<!-- Input -->
@​switch (foo) {
@​case (1) {}
@​default never;
}
<!-- Prettier 3.8.1 -->
SyntaxError: Incomplete block "default never". If you meant to write the @​ character, you should use the "&#​64;" HTML entity instead. (3:3)
<!-- Prettier 3.8.2 -->
@​switch (foo) {
@​case (1) {}
@​default never;
}
```
`arrow function` and `instanceof` expressions.
<!-- prettier-ignore -->
```html
<!-- Input -->
@​let fn = (a) => a? 1:2;
{{ fn ( a instanceof b)}}
<!-- Prettier 3.8.1 -->
@​let fn = (a) => a? 1:2;
{{ fn ( a instanceof b)}}
<!-- Prettier 3.8.2 -->
@​let fn = (a) => (a ? 1 : 2);
{{ fn(a instanceof b) }}
```
</details>
---
### Configuration
📅 **Schedule**: (UTC)
- Branch creation
- Between 12:00 AM and 03:59 AM, on day 1 of the month (`* 0-3 1 * *`)
- Automerge
- At any time (no schedule defined)
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMDguMSIsInVwZGF0ZWRJblZlciI6IjQzLjEwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->1 parent 4c19dee commit 43b1b9c
2 files changed
Lines changed: 9 additions & 9 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
51 | 51 | | |
52 | 52 | | |
53 | 53 | | |
54 | | - | |
| 54 | + | |
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments