Bump prettier from 2.8.6 to 2.8.7 in /webapp
Bumps prettier from 2.8.6 to 2.8.7.
Release notes
Sourced from prettier's releases.
2.8.7
- Allow multiple decorators on same getter/setter
Changelog
Sourced from prettier's changelog.
2.8.7
#14584 by
Allow multiple decorators on same getter/setter (@fisker
)// Input class A { @decorator() get foo () {} @decorator() set foo (value) {} } // Prettier 2.8.6 SyntaxError: Decorators cannot be applied to multiple get/set accessors of the same name. (5:3) 3 | get foo () {} 4 | > 5 | @decorator() | ^^^^^^^^^^^^ 6 | set foo (value) {} 7 | } // Prettier 2.8.7 class A { @decorator() get foo() {} @decorator() set foo(value) {} }
Commits
-
543a9d7
Release 2.8.7 -
f9fae7f
Allow multiple decorators on same getter/setter (#14584) - See full diff 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