Bump prettier from 2.8.4 to 2.8.5
Bumps prettier from 2.8.4 to 2.8.5.
Changelog
Sourced from prettier's changelog.
2.8.5
#14391 by
Support TypeScript 5.0 (@fisker
, #13819 by@fisker
,@sosukesuzuki
)TypeScript 5.0 introduces two new syntactic features:
const
modifiers for type parametersexport type *
declarations#14393 by
Add missing parentheses for decorator (@fisker
)// Input class Person { @(myDecoratorArray[0]) greet() {} } // Prettier 2.8.4 class Person { @myDecoratorArray[0] greet() {} } // Prettier 2.8.5 class Person { @(myDecoratorArray[0]) greet() {} }
Add parentheses for
TypeofTypeAnnotation
to improve readability (#14458 by@fisker
)// Input type A = (typeof node.children)[]; // Prettier 2.8.4 type A = typeof node.children[]; // Prettier 2.8.5 type A = (typeof node.children)[];
Support
max_line_length=off
when parsing.editorconfig
(#14516 by@josephfrazier
)
... (truncated)
Commits
-
0a79535
Release 2.8.5 -
019ebe5
Support TypeScript 5 (backport #14391 and #13819) (#14512) -
e7b383b
Supportmax_line_length=off
when parsing.editorconfig
(#14516) -
5446a8f
Build(deps-dev): Bump webpack from 5.73.0 to 5.76.0 in /website (#14511) -
03f0b90
Build(deps-dev): Bump webpack from 5.70.0 to 5.76.0 in /scripts/tools/bundle-... -
0894348
Add note about SmartTabs (#14428) -
f1b18f2
Add parentheses toTypeofTypeAnnotation
(#14458) -
3d70637
Include prettier-plugin-sql-cst to community plugins list (#14408) -
bc09877
Add missing parentheses for decorator (#14393) -
2a5b391
Explain ASI issues aren't always auto-fixed (#14174) - Additional commits viewable in compare view
Dependabot commands
You can trigger Dependabot actions by commenting on this MR
-
$dependabot rebase
will rebase this MR -
$dependabot recreate
will recreate this MR rewriting all the manual changes and resolving conflicts