@sveltejs/kit 1.0.0-next.563 → 1.0.0-next.564
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sveltejs/kit",
|
|
3
|
-
"version": "1.0.0-next.
|
|
3
|
+
"version": "1.0.0-next.564",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/sveltejs/kit",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"set-cookie-parser": "^2.5.1",
|
|
22
22
|
"sirv": "^2.0.2",
|
|
23
23
|
"tiny-glob": "^0.2.9",
|
|
24
|
-
"undici": "5.
|
|
24
|
+
"undici": "5.13.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@playwright/test": "1.25.0",
|
|
@@ -478,7 +478,7 @@ export function create_client({ target, base }) {
|
|
|
478
478
|
params,
|
|
479
479
|
route,
|
|
480
480
|
status,
|
|
481
|
-
url,
|
|
481
|
+
url: new URL(url),
|
|
482
482
|
form,
|
|
483
483
|
// The whole page store is updated, but this way the object reference stays the same
|
|
484
484
|
data: data_changed ? data : page.data
|
package/types/ambient.d.ts
CHANGED
|
@@ -363,7 +363,7 @@ declare module '$app/stores' {
|
|
|
363
363
|
declare module '$service-worker' {
|
|
364
364
|
/**
|
|
365
365
|
* An array of URL strings representing the files generated by Vite, suitable for caching with `cache.addAll(build)`.
|
|
366
|
-
* During development, this is
|
|
366
|
+
* During development, this is an empty array.
|
|
367
367
|
*/
|
|
368
368
|
export const build: string[];
|
|
369
369
|
/**
|
|
@@ -372,7 +372,7 @@ declare module '$service-worker' {
|
|
|
372
372
|
export const files: string[];
|
|
373
373
|
/**
|
|
374
374
|
* An array of pathnames corresponding to prerendered pages and endpoints.
|
|
375
|
-
* During development, this is
|
|
375
|
+
* During development, this is an empty array.
|
|
376
376
|
*/
|
|
377
377
|
export const prerendered: string[];
|
|
378
378
|
/**
|