Update devDependencies (non-major)
This MR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
prettier (source) | ^2.8.0 -> ^2.8.1 |
||||
typescript (source) | ^4.9.3 -> ^4.9.4 |
Release Notes
prettier/prettier
v2.8.1
#9184 by @agamkrbit)
Fix SCSS map in arguments (// Input
$display-breakpoints: map-deep-merge(
(
"print-only": "only print",
"screen-only": "only screen",
"xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, "sm")-1})",
),
$display-breakpoints
);
// Prettier 2.8.0
$display-breakpoints: map-deep-merge(
(
"print-only": "only print",
"screen-only": "only screen",
"xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, " sm
")-1})",
),
$display-breakpoints
);
// Prettier 2.8.1
$display-breakpoints: map-deep-merge(
(
"print-only": "only print",
"screen-only": "only screen",
"xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, "sm")-1})",
),
$display-breakpoints
);
#13919 by @sosukesuzuki)
Support auto accessors syntax (Support for Auto Accessors Syntax landed in TypeScript 4.9.
(Doesn't work well with babel-ts
parser)
class Foo {
accessor foo: number = 3;
}
Microsoft/TypeScript
v4.9.4
: TypeScript 4.9.4
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
Changes:
-
e286821
Bump version to 4.9.4 and LKG. -
eb5419f
Cherry-pick #51704 to release 4.9 (#51712) -
b4d382b
Cherry-pick changes for narrowing to tagged literal types. -
e7a02f4
Port of #51626 and #51689 to release-4.9 (#51627) -
1727912
Cherry-pick fix aroundvisitEachChild
to release-4.9. (#51544)
This list of changes was auto generated.
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.