Update all non-major dependencies
This MR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
@sveltejs/kit (source) | ^1.13.0 -> ^1.14.0 |
||||
@typescript-eslint/eslint-plugin | ^5.56.0 -> ^5.57.0 |
||||
@typescript-eslint/parser | ^5.56.0 -> ^5.57.0 |
||||
prettier (source) | ^2.8.6 -> ^2.8.7 |
Release Notes
sveltejs/kit
v1.14.0
Minor Changes
- feat: add HMR to fallback error pages during dev (#9497)
Patch Changes
- fix: add
submitter
type toSumbitFunction
(#9484)
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v5.57.0
Bug Fixes
- eslint-plugin: [no-unnecessary-boolean-literal-compare] simplify fixer and add support for double negation (#6620) (81c8519)
- eslint-plugin: correct crashes with getTypeArguments for ts < 3.7 (#6767) (59eab58)
Features
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v5.57.0
Note: Version bump only for package @typescript-eslint/parser
prettier/prettier
v2.8.7
#14584 by @fisker)
Allow multiple decorators on same getter/setter (// 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) {}
}
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.
Edited by renovate