Socket
Socket
Sign inDemoInstall

@sveltejs/kit

Package Overview
Dependencies
Maintainers
4
Versions
780
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sveltejs/kit - npm Package Compare versions

Comparing version 2.5.18 to 2.5.19

5

package.json
{
"name": "@sveltejs/kit",
"version": "2.5.18",
"version": "2.5.19",
"description": "SvelteKit is the fastest way to build Svelte apps",

@@ -39,3 +39,2 @@ "keywords": [

"@types/node": "^18.19.3",
"@types/sade": "^1.7.8",
"@types/set-cookie-parser": "^2.4.7",

@@ -48,3 +47,3 @@ "dts-buddy": "0.4.6",

"vite": "^5.3.2",
"vitest": "^1.6.0"
"vitest": "^2.0.1"
},

@@ -51,0 +50,0 @@ "peerDependencies": {

7

src/core/sync/write_root.js

@@ -24,3 +24,6 @@ import { dedent, isSvelte5Plus, write_if_changed } from './utils.js';

let pyramid = `<svelte:component this={constructors[${l}]} bind:this={components[${l}]} data={data_${l}} {form} />`;
let pyramid = dedent`
${isSvelte5Plus() ? '<!-- svelte-ignore binding_property_non_reactive -->' : ''}
<svelte:component this={constructors[${l}]} bind:this={components[${l}]} data={data_${l}} {form} />
`;

@@ -30,2 +33,3 @@ while (l--) {

{#if constructors[${l + 1}]}
${isSvelte5Plus() ? '<!-- svelte-ignore binding_property_non_reactive -->' : ''}
<svelte:component this={constructors[${l}]} bind:this={components[${l}]} data={data_${l}}>

@@ -35,2 +39,3 @@ ${pyramid}

{:else}
${isSvelte5Plus() ? '<!-- svelte-ignore binding_property_non_reactive -->' : ''}
<svelte:component this={constructors[${l}]} bind:this={components[${l}]} data={data_${l}} {form} />

@@ -37,0 +42,0 @@ {/if}

// generated during release, do not modify
/** @type {string} */
export const VERSION = '2.5.18';
export const VERSION = '2.5.19';
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc