@sveltejs/kit 2.49.1 → 2.49.3
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 +7 -3
- package/src/core/adapt/builder.js +3 -3
- package/src/exports/public.d.ts +0 -2
- package/src/exports/vite/index.js +1 -1
- package/src/runtime/client/client.js +1 -1
- package/src/runtime/client/utils.js +11 -7
- package/src/runtime/form-utils.js +2 -2
- package/src/version.js +1 -1
- package/types/index.d.ts +1 -3
- package/types/index.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sveltejs/kit",
|
|
3
|
-
"version": "2.49.
|
|
3
|
+
"version": "2.49.3",
|
|
4
4
|
"description": "SvelteKit is the fastest way to build Svelte apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"framework",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@opentelemetry/api": "^1.0.0",
|
|
37
|
-
"@playwright/test": "
|
|
37
|
+
"@playwright/test": "1.56.0",
|
|
38
38
|
"@sveltejs/vite-plugin-svelte": "^6.0.0-next.3",
|
|
39
39
|
"@types/connect": "^3.4.38",
|
|
40
40
|
"@types/node": "^18.19.119",
|
|
@@ -45,17 +45,21 @@
|
|
|
45
45
|
"svelte-preprocess": "^6.0.0",
|
|
46
46
|
"typescript": "^5.3.3",
|
|
47
47
|
"vite": "^6.3.5",
|
|
48
|
-
"vitest": "^
|
|
48
|
+
"vitest": "^4.0.0"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
51
|
"@sveltejs/vite-plugin-svelte": "^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0",
|
|
52
52
|
"@opentelemetry/api": "^1.0.0",
|
|
53
53
|
"svelte": "^4.0.0 || ^5.0.0-next.0",
|
|
54
|
+
"typescript": "^5.3.3",
|
|
54
55
|
"vite": "^5.0.3 || ^6.0.0 || ^7.0.0-beta.0"
|
|
55
56
|
},
|
|
56
57
|
"peerDependenciesMeta": {
|
|
57
58
|
"@opentelemetry/api": {
|
|
58
59
|
"optional": true
|
|
60
|
+
},
|
|
61
|
+
"typescript": {
|
|
62
|
+
"optional": true
|
|
59
63
|
}
|
|
60
64
|
},
|
|
61
65
|
"bin": {
|
|
@@ -8,7 +8,7 @@ import { extname, resolve, join, dirname, relative } from 'node:path';
|
|
|
8
8
|
import { pipeline } from 'node:stream';
|
|
9
9
|
import { promisify } from 'node:util';
|
|
10
10
|
import zlib from 'node:zlib';
|
|
11
|
-
import { copy, rimraf, mkdirp } from '../../utils/filesystem.js';
|
|
11
|
+
import { copy, rimraf, mkdirp, posixify } from '../../utils/filesystem.js';
|
|
12
12
|
import { generate_manifest } from '../generate_manifest/index.js';
|
|
13
13
|
import { get_route_segments } from '../../utils/routing.js';
|
|
14
14
|
import { get_env } from '../../exports/vite/utils.js';
|
|
@@ -268,8 +268,8 @@ export function create_builder({
|
|
|
268
268
|
copy(`${entrypoint}.map`, `${start}.map`);
|
|
269
269
|
}
|
|
270
270
|
|
|
271
|
-
const relative_instrumentation = relative(dirname(entrypoint), instrumentation);
|
|
272
|
-
const relative_start = relative(dirname(entrypoint), start);
|
|
271
|
+
const relative_instrumentation = posixify(relative(dirname(entrypoint), instrumentation));
|
|
272
|
+
const relative_start = posixify(relative(dirname(entrypoint), start));
|
|
273
273
|
|
|
274
274
|
const facade =
|
|
275
275
|
'generateText' in module
|
package/src/exports/public.d.ts
CHANGED
|
@@ -356,8 +356,6 @@ export interface KitConfig {
|
|
|
356
356
|
* };
|
|
357
357
|
* ```
|
|
358
358
|
*
|
|
359
|
-
* > [!NOTE] The built-in `$lib` alias is controlled by `config.kit.files.lib` as it is used for packaging.
|
|
360
|
-
*
|
|
361
359
|
* > [!NOTE] You will need to run `npm run dev` to have SvelteKit automatically generate the required alias configuration in `jsconfig.json` or `tsconfig.json`.
|
|
362
360
|
* @default {}
|
|
363
361
|
*/
|
|
@@ -42,7 +42,7 @@ import { import_peer } from '../../utils/import.js';
|
|
|
42
42
|
import { compact } from '../../utils/array.js';
|
|
43
43
|
import { should_ignore } from './static_analysis/utils.js';
|
|
44
44
|
|
|
45
|
-
const cwd = process.cwd();
|
|
45
|
+
const cwd = posixify(process.cwd());
|
|
46
46
|
|
|
47
47
|
/** @type {import('./types.js').EnforcedConfig} */
|
|
48
48
|
const enforced_config = {
|
|
@@ -2145,7 +2145,7 @@ function push_invalidated(resource) {
|
|
|
2145
2145
|
}
|
|
2146
2146
|
|
|
2147
2147
|
/**
|
|
2148
|
-
* Causes all `load` functions belonging to the currently active page to re-run. Returns a `Promise` that resolves when the page is subsequently updated.
|
|
2148
|
+
* Causes all `load` and `query` functions belonging to the currently active page to re-run. Returns a `Promise` that resolves when the page is subsequently updated.
|
|
2149
2149
|
* @returns {Promise<void>}
|
|
2150
2150
|
*/
|
|
2151
2151
|
export function invalidateAll() {
|
|
@@ -323,8 +323,8 @@ export function is_external_url(url, base, hash_routing) {
|
|
|
323
323
|
return false;
|
|
324
324
|
}
|
|
325
325
|
|
|
326
|
-
/** @type {
|
|
327
|
-
|
|
326
|
+
/** @type {Set<string> | null} */
|
|
327
|
+
let seen = null;
|
|
328
328
|
|
|
329
329
|
/**
|
|
330
330
|
* Used for server-side resolution, to replicate Vite's CSS loading behaviour in production.
|
|
@@ -341,13 +341,17 @@ export function load_css(deps) {
|
|
|
341
341
|
);
|
|
342
342
|
const csp_nonce = csp_nonce_meta?.nonce || csp_nonce_meta?.getAttribute('nonce');
|
|
343
343
|
|
|
344
|
+
seen ??= new Set(
|
|
345
|
+
Array.from(document.querySelectorAll('link[rel="stylesheet"]')).map((link) => {
|
|
346
|
+
return /** @type {HTMLLinkElement} */ (link).href;
|
|
347
|
+
})
|
|
348
|
+
);
|
|
349
|
+
|
|
344
350
|
for (const dep of deps) {
|
|
345
|
-
|
|
346
|
-
seen[dep] = true;
|
|
351
|
+
const href = new URL(dep, document.baseURI).href;
|
|
347
352
|
|
|
348
|
-
if (
|
|
349
|
-
|
|
350
|
-
}
|
|
353
|
+
if (seen.has(href)) continue;
|
|
354
|
+
seen.add(href);
|
|
351
355
|
|
|
352
356
|
const link = document.createElement('link');
|
|
353
357
|
link.rel = 'stylesheet';
|
|
@@ -220,7 +220,7 @@ export async function deserialize_binary_form(request) {
|
|
|
220
220
|
`Could not deserialize binary form: got version ${header[0]}, expected version ${BINARY_FORM_VERSION}`
|
|
221
221
|
);
|
|
222
222
|
}
|
|
223
|
-
const header_view = new DataView(header.buffer);
|
|
223
|
+
const header_view = new DataView(header.buffer, header.byteOffset, header.byteLength);
|
|
224
224
|
const data_length = header_view.getUint32(1, true);
|
|
225
225
|
const file_offsets_length = header_view.getUint16(5, true);
|
|
226
226
|
|
|
@@ -441,7 +441,7 @@ export function deep_set(object, keys, value) {
|
|
|
441
441
|
check_prototype_pollution(key);
|
|
442
442
|
|
|
443
443
|
const is_array = /^\d+$/.test(keys[i + 1]);
|
|
444
|
-
const exists = key
|
|
444
|
+
const exists = Object.hasOwn(current, key);
|
|
445
445
|
const inner = current[key];
|
|
446
446
|
|
|
447
447
|
if (exists && is_array !== Array.isArray(inner)) {
|
package/src/version.js
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -332,8 +332,6 @@ declare module '@sveltejs/kit' {
|
|
|
332
332
|
* };
|
|
333
333
|
* ```
|
|
334
334
|
*
|
|
335
|
-
* > [!NOTE] The built-in `$lib` alias is controlled by `config.kit.files.lib` as it is used for packaging.
|
|
336
|
-
*
|
|
337
335
|
* > [!NOTE] You will need to run `npm run dev` to have SvelteKit automatically generate the required alias configuration in `jsconfig.json` or `tsconfig.json`.
|
|
338
336
|
* @default {}
|
|
339
337
|
*/
|
|
@@ -3035,7 +3033,7 @@ declare module '$app/navigation' {
|
|
|
3035
3033
|
* */
|
|
3036
3034
|
export function invalidate(resource: string | URL | ((url: URL) => boolean)): Promise<void>;
|
|
3037
3035
|
/**
|
|
3038
|
-
* Causes all `load` functions belonging to the currently active page to re-run. Returns a `Promise` that resolves when the page is subsequently updated.
|
|
3036
|
+
* Causes all `load` and `query` functions belonging to the currently active page to re-run. Returns a `Promise` that resolves when the page is subsequently updated.
|
|
3039
3037
|
* */
|
|
3040
3038
|
export function invalidateAll(): Promise<void>;
|
|
3041
3039
|
/**
|
package/types/index.d.ts.map
CHANGED
|
@@ -215,6 +215,6 @@
|
|
|
215
215
|
null,
|
|
216
216
|
null
|
|
217
217
|
],
|
|
218
|
-
"mappings": ";;;;;;;;MA+BKA,IAAIA;;;;;kBAKQC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAiCZC,cAAcA;;;;;;aAMdC,cAAcA;;;;;;;;MAQrBC,aAAaA;;;;;OAKJC,YAAYA;;kBAETC,aAAaA;;;;;;MAMzBC,qBAAqBA;;;;;;;;;;;kBAWTC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA8IPC,MAAMA;;;;;;;;;;;kBAWNC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA4DPC,QAAQA;;;;;;;;kBAQRC,SAASA
|
|
218
|
+
"mappings": "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",
|
|
219
219
|
"ignoreList": []
|
|
220
220
|
}
|