Update all non-major dependencies (patch)
Compare changes
+ 3
− 9
@@ -1975,9 +1975,7 @@
@@ -3707,9 +3705,7 @@ escape-string-regexp@^1.0.5:
@@ -6771,9 +6767,7 @@ prelude-ls@^1.2.1:
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
@sentry/browser | dependencies | patch | 6.19.2 -> 6.19.3 |
eslint-plugin-jsdoc | devDependencies | patch | 38.1.0 -> 38.1.6 |
prettier (source) | devDependencies | patch | 2.6.1 -> 2.6.2 |
v6.19.3
v38.1.6
no-restricted-syntax
, no-missing-syntax
: pass on parser's visitorKeys
to esquery (f873e32)v38.1.5
no-restricted-syntax
: include comment
in templates and in default error message if present (cc031b8)v38.1.4
v38.1.3
check-types
, no-undefined-types
: safer optional chaining (63a96ee)v38.1.2
v38.1.1
v2.6.2
// Input
.background-gradient(@​cut) {
background: linear-gradient(
to right,
@​white 0%,
@​white (@​cut - 0.01%),
@​portal-background @​cut,
@​portal-background 100%
);
}
// Prettier 2.6.1
TypeError: Cannot read properties of undefined (reading 'endOffset')
// Prettier 2.6.2
.background-gradient(@​cut) {
background: linear-gradient(
to right,
@​white 0%,
@​white (@​cut - 0.01%),
@​portal-background @​cut,
@​portal-background 100%
);
}
meriyah
to fix several bugs (#12567 by @fisker, fixes in meriyah
by @3cp)Fixes bugs when parsing following valid code:
foo(await bar());
const regex = /.*/ms;
const element = <p>{/w/.test(s)}</p>;
class A extends B {
#privateMethod() {
super.method();
}
}
This MR has been generated by Renovate Bot.