Bump prettier from 2.8.5 to 2.8.6
Bumps prettier from 2.8.5 to 2.8.6.
Release notes
Sourced from prettier's releases.
2.8.6
- Allow decorators on private members and class expressions
Changelog
Sourced from prettier's changelog.
2.8.6
#14548 by
Allow decorators on private members and class expressions (@fisker
)// Input class A { @decorator() #privateMethod () {} } // Prettier 2.8.5 SyntaxError: Decorators are not valid here. (2:3) 1 | class A { > 2 | @decorator() | ^^^^^^^^^^^^ 3 | #privateMethod () {} 4 | } // Prettier 2.8.6 class A { @decorator() #privateMethod() {} }
Commits
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