chore(deps): update dependency prettier to ^3.5.3
This MR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| prettier (source) | devDependencies | patch | ^3.5.2 -> ^3.5.3 |
MR created with the help of gitlab-org/frontend/renovate-gitlab-bot
Release Notes
prettier/prettier (prettier)
v3.5.3
Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @fisker)
// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);
// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;
// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.