Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

svelte

Package Overview
Dependencies
Maintainers
3
Versions
1083
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.56.2
to
5.56.3
+1
-1
package.json

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

"license": "MIT",
"version": "5.56.2",
"version": "5.56.3",
"type": "module",

@@ -8,0 +8,0 @@ "types": "./types/index.d.ts",

@@ -6,3 +6,3 @@ /** @import { Derived, Effect } from '#client' */

import { is_firefox } from './dom/operations.js';
import { ERROR_VALUE, BOUNDARY_EFFECT, REACTION_RAN, EFFECT } from './constants.js';
import { ERROR_VALUE, BOUNDARY_EFFECT, REACTION_RAN, EFFECT, DESTROYED } from './constants.js';
import { define_property, get_descriptor } from '../shared/utils.js';

@@ -49,2 +49,6 @@ import { active_effect, active_reaction } from './runtime.js';

export function invoke_error_boundary(error, effect) {
if (effect !== null && (effect.f & DESTROYED) !== 0) {
return;
}
while (effect !== null) {

@@ -51,0 +55,0 @@ if ((effect.f & BOUNDARY_EFFECT) !== 0) {

@@ -183,2 +183,1 @@ export { createAttachmentKey as attachment } from '../../attachments/index.js';

export { log_if_contains_state } from './dev/console-log.js';
export { invoke_error_boundary } from './error-handling.js';

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

*/
export const VERSION = '5.56.2';
export const VERSION = '5.56.3';
export const PUBLIC_VERSION = '5';

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

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