chore(deps): update dependency prettier to v3.8.4
This MR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| prettier (source) | 3.8.1 → 3.8.4 |
Release Notes
prettier/prettier (prettier)
v3.8.4
Markdown: Fix blank lines between list items and nested sub-lists being removed in Markdown/MDX (#17746 by @byplayer)
Prettier was removing blank lines between list items and their nested sub-lists, converting loose lists into tight lists and changing their semantic meaning.
<!-- Input -->
- a
- b
- c
- d
<!-- Prettier 3.8.3 -->
- a
- b
- c
- d
<!-- Prettier 3.8.4 -->
- a
- b
- c
- dv3.8.3
SCSS: Prevent trailing comma in if() function (#18471 by @kovsu)
// 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
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
- Branch creation
- At any time (no schedule defined)
- Automerge
- At any time (no schedule defined)
- If you want to rebase/retry this MR, check this box
This MR has been generated by Mend Renovate.
Edited by Renovate Bot