chore: bump packages (#18752)

esrap bump ensures a bugfix, devalue silences vulnerability reports
pull/18753/merge
Simon H 1 day ago committed by GitHub
parent b580455c9c
commit 9d91a40faf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -171,17 +171,17 @@
"web-features": "^3.29.0"
},
"dependencies": {
"@jridgewell/remapping": "^2.3.4",
"@jridgewell/sourcemap-codec": "^1.5.0",
"@sveltejs/acorn-typescript": "^1.0.10",
"@types/estree": "^1.0.5",
"@jridgewell/remapping": "^2.3.5",
"@jridgewell/sourcemap-codec": "^1.6.0",
"@sveltejs/acorn-typescript": "^1.0.13",
"@types/estree": "^1.0.9",
"acorn": "^8.18.0",
"aria-query": "5.3.1",
"axobject-query": "^4.1.0",
"clsx": "^2.1.1",
"devalue": "^5.8.1",
"devalue": "^5.9.2",
"esm-env": "^1.2.1",
"esrap": "^2.2.12",
"esrap": "^2.3.6",
"is-reference": "^3.0.3",
"locate-character": "^3.0.0",
"magic-string": "^0.30.11",

@ -286,7 +286,7 @@ function _extract_paths(paths, inserts, param, expression, update_expression, ha
const props = [];
for (const p of param.properties) {
if (p.type === 'Property' && p.key.type !== 'PrivateIdentifier') {
if (p.type === 'Property') {
if (p.key.type === 'Identifier' && !p.computed) {
props.push(b.literal(p.key.name));
} else if (p.key.type === 'Literal') {
@ -548,10 +548,7 @@ export function is_expression_async(expression) {
if (property.type === 'SpreadElement') {
return is_expression_async(property.argument);
} else if (property.type === 'Property') {
return (
(property.key.type !== 'PrivateIdentifier' && is_expression_async(property.key)) ||
is_expression_async(property.value)
);
return is_expression_async(property.key) || is_expression_async(property.value);
}
});
}

@ -1,2 +1,8 @@
/** Anything except a function */
export type NotFunction<T> = T extends Function ? never : T;
declare global {
// @ts-ignore devalue has it in its types, but it's not part of the standard lib at the version our runtime is.
// We're not actually doing anything with it so we silence the error this ay
type Float16Array = any;
}

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save