@sveltejs/kit
Advanced tools
Comparing version 2.7.5 to 2.7.6
{ | ||
"name": "@sveltejs/kit", | ||
"version": "2.7.5", | ||
"version": "2.7.6", | ||
"description": "SvelteKit is the fastest way to build Svelte apps", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -692,3 +692,3 @@ import 'svelte'; // pick up `declare module "*.svelte"` | ||
/** | ||
* The server-side [`handleError`](https://svelte.dev/docs/kit/hooks#shared-hooks-handleError) hook runs when an unexpected error is thrown while responding to a request. | ||
* The server-side [`handleError`](https://svelte.dev/docs/kit/hooks#Shared-hooks-handleError) hook runs when an unexpected error is thrown while responding to a request. | ||
* | ||
@@ -706,3 +706,3 @@ * If an unexpected error is thrown during loading or rendering, this function will be called with the error and the event. | ||
/** | ||
* The client-side [`handleError`](https://svelte.dev/docs/kit/hooks#shared-hooks-handleError) hook runs when an unexpected error is thrown while navigating. | ||
* The client-side [`handleError`](https://svelte.dev/docs/kit/hooks#Shared-hooks-handleError) hook runs when an unexpected error is thrown while navigating. | ||
* | ||
@@ -720,3 +720,3 @@ * If an unexpected error is thrown during loading or the following render, this function will be called with the error and the event. | ||
/** | ||
* The [`handleFetch`](https://svelte.dev/docs/kit/hooks#server-hooks-handleFetch) hook allows you to modify (or replace) a `fetch` request that happens inside a `load` function that runs on the server (or during pre-rendering) | ||
* The [`handleFetch`](https://svelte.dev/docs/kit/hooks#Server-hooks-handleFetch) hook allows you to modify (or replace) a `fetch` request that happens inside a `load` function that runs on the server (or during pre-rendering) | ||
*/ | ||
@@ -723,0 +723,0 @@ export type HandleFetch = (input: { |
@@ -123,3 +123,5 @@ import { parse, serialize } from 'cookie'; | ||
console.warn( | ||
`The cookie name "${name}" will be invalid in SvelteKit 3.0 as it contains ${illegal_characters.join(' and ')}. See RFC 2616 for more details https://datatracker.ietf.org/doc/html/rfc2616#section-2.2` | ||
`The cookie name "${name}" will be invalid in SvelteKit 3.0 as it contains ${illegal_characters.join( | ||
' and ' | ||
)}. See RFC 2616 for more details https://datatracker.ietf.org/doc/html/rfc2616#section-2.2` | ||
); | ||
@@ -126,0 +128,0 @@ } |
@@ -49,3 +49,3 @@ /** | ||
/** | ||
* If your adapter provides [platform-specific context](https://svelte.dev/docs/kit/adapters#platform-specific-context) via `event.platform`, you can specify it here. | ||
* If your adapter provides [platform-specific context](https://svelte.dev/docs/kit/adapters#Platform-specific-context) via `event.platform`, you can specify it here. | ||
*/ | ||
@@ -52,0 +52,0 @@ export interface Platform {} |
// generated during release, do not modify | ||
/** @type {string} */ | ||
export const VERSION = '2.7.5'; | ||
export const VERSION = '2.7.6'; |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
741952
21533