Bump prettier from 3.5.2 to 3.5.3 by dependabot[bot] 路 Pull Request #1894 路 peter-evans/create-issue-from-file (original) (raw)

Bumps prettier from 3.5.2 to 3.5.3.

Release notes

Sourced from prettier's releases.

3.5.3

馃敆 Changelog

Changelog

Sourced from prettier's changelog.

3.5.3

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @鈥媐isker)

// Input type T = 'a' | ('b' extends U ? 'c' : empty); type T = 'a' & ('b' extends U ? 'c' : empty); // Prettier 3.5.2 type T = "a" | "b" extends U ? "c" : empty; type T = "a" & "b" extends U ? "c" : empty; // Prettier 3.5.3 type T = "a" | ("b" extends U ? "c" : empty); type T = "a" & ("b" extends U ? "c" : empty);

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR: