Socket
Socket
Sign inDemoInstall

@sveltejs/kit

Package Overview
Dependencies
Maintainers
4
Versions
782
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.4.1 to 2.4.2

4

package.json
{
"name": "@sveltejs/kit",
"version": "2.4.1",
"version": "2.4.2",
"description": "The fastest way to build Svelte apps",

@@ -28,3 +28,3 @@ "repository": {

"devDependencies": {
"@playwright/test": "1.30.0",
"@playwright/test": "^1.41.0",
"@sveltejs/vite-plugin-svelte": "^3.0.1",

@@ -31,0 +31,0 @@ "@types/connect": "^3.4.38",

@@ -112,3 +112,6 @@ import { createReadStream } from 'node:fs';

headers: /** @type {Record<string, string>} */ (request.headers),
body: get_raw_body(request, bodySizeLimit)
body:
request.method === 'POST' || request.method === 'PUT' || request.method === 'PATCH'
? get_raw_body(request, bodySizeLimit)
: undefined
});

@@ -115,0 +118,0 @@ }

// generated during release, do not modify
/** @type {string} */
export const VERSION = '2.4.1';
export const VERSION = '2.4.2';

Sorry, the diff of this file is not supported yet

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