Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

svelte

Package Overview
Dependencies
Maintainers
3
Versions
1058
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svelte - npm Package Compare versions

Comparing version
5.53.2
to
5.53.3
+2
-2
package.json

@@ -5,3 +5,3 @@ {

"license": "MIT",
"version": "5.53.2",
"version": "5.53.3",
"type": "module",

@@ -165,3 +165,3 @@ "types": "./types/index.d.ts",

"acorn": "^8.12.1",
"aria-query": "^5.3.1",
"aria-query": "5.3.1",
"axobject-query": "^4.1.0",

@@ -168,0 +168,0 @@ "clsx": "^2.1.1",

@@ -105,3 +105,3 @@ /** @import { Source, TemplateNode } from '#client' */

internal_set(error, e);
branches.ensure(THEN, catch_fn && ((target) => catch_fn(target, error)));
branches.ensure(CATCH, catch_fn && ((target) => catch_fn(target, error)));

@@ -108,0 +108,0 @@ if (!catch_fn) {

@@ -48,3 +48,3 @@ /** @import { ComponentContext, Effect, EffectNodes, TemplateNode } from '#client' */

// For objects, we apply string coercion (which might make things like $state array references in the template reactive) before diffing
var str = value == null ? '' : typeof value === 'object' ? value + '' : value;
var str = value == null ? '' : typeof value === 'object' ? `${value}` : value;
// @ts-expect-error

@@ -54,3 +54,3 @@ if (str !== (text.__t ??= text.nodeValue)) {

text.__t = str;
text.nodeValue = str + '';
text.nodeValue = `${str}`;
}

@@ -57,0 +57,0 @@ }

@@ -7,3 +7,3 @@ // generated during release, do not modify

*/
export const VERSION = '5.53.2';
export const VERSION = '5.53.3';
export const PUBLIC_VERSION = '5';

Sorry, the diff of this file is too big to display