Update dependency prettier to v3.8.2
This MR contains the following updates:
| Package | Type | Update | Change | Pending |
|---|---|---|---|---|
| prettier (source) | devDependencies | patch | 3.8.1 -> 3.8.2 |
3.8.3 |
MR created with the help of gitlab-org/frontend/renovate-gitlab-bot
Release Notes
prettier/prettier (prettier)
v3.8.2
Angular: Support Angular v21.2 (#18722, #19034 by @fisker)
Exhaustive typechecking with @default never;
<!-- 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.
<!-- 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) }}Configuration
- If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.