@sveltejs/kit 1.27.0 → 1.27.2
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 +2 -2
- package/src/exports/node/polyfills.js +25 -8
- package/src/exports/public.d.ts +4 -4
- package/src/version.js +1 -1
- package/types/index.d.ts +8 -8
- 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": "1.27.
|
|
3
|
+
"version": "1.27.2",
|
|
4
4
|
"description": "The fastest way to build Svelte apps",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"dts-buddy": "^0.2.4",
|
|
35
35
|
"marked": "^9.0.0",
|
|
36
36
|
"rollup": "^3.7.0",
|
|
37
|
-
"svelte": "^4.
|
|
37
|
+
"svelte": "^4.2.2",
|
|
38
38
|
"svelte-preprocess": "^5.0.4",
|
|
39
39
|
"typescript": "^4.9.4",
|
|
40
40
|
"vite": "^4.4.9",
|
|
@@ -3,11 +3,18 @@ import buffer from 'node:buffer';
|
|
|
3
3
|
import { webcrypto as crypto } from 'node:crypto';
|
|
4
4
|
import { fetch, Response, Request, Headers, FormData, File as UndiciFile } from 'undici';
|
|
5
5
|
|
|
6
|
-
//
|
|
7
|
-
const File = buffer.File ?? UndiciFile;
|
|
6
|
+
// `buffer.File` was added in Node 18.13.0 while the `File` global was added in Node 20.0.0
|
|
7
|
+
const File = /** @type {import('node:buffer') & { File?: File}} */ (buffer).File ?? UndiciFile;
|
|
8
8
|
|
|
9
9
|
/** @type {Record<string, any>} */
|
|
10
|
-
const
|
|
10
|
+
const globals_post_node_18_11 = {
|
|
11
|
+
crypto,
|
|
12
|
+
File
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
/** @type {Record<string, any>} */
|
|
16
|
+
// TODO: remove this once we only support Node 18.11+ (the version multipart/form-data was added)
|
|
17
|
+
const globals_pre_node_18_11 = {
|
|
11
18
|
crypto,
|
|
12
19
|
fetch,
|
|
13
20
|
Response,
|
|
@@ -21,16 +28,26 @@ const globals = {
|
|
|
21
28
|
};
|
|
22
29
|
|
|
23
30
|
// exported for dev/preview and node environments
|
|
24
|
-
// TODO: remove this once we only support Node 18.11+ (the version multipart/form-data was added)
|
|
25
31
|
/**
|
|
26
32
|
* Make various web APIs available as globals:
|
|
27
33
|
* - `crypto`
|
|
28
|
-
* - `fetch`
|
|
29
|
-
* - `Headers`
|
|
30
|
-
* - `Request`
|
|
31
|
-
* - `Response`
|
|
34
|
+
* - `fetch` (only in node < 18.11)
|
|
35
|
+
* - `Headers` (only in node < 18.11)
|
|
36
|
+
* - `Request` (only in node < 18.11)
|
|
37
|
+
* - `Response` (only in node < 18.11)
|
|
32
38
|
*/
|
|
33
39
|
export function installPolyfills() {
|
|
40
|
+
// Be defensive (we don't know in which environments this is called) and always apply if something goes wrong
|
|
41
|
+
let globals = globals_pre_node_18_11;
|
|
42
|
+
try {
|
|
43
|
+
const version = process.versions.node.split('.').map((n) => parseInt(n, 10));
|
|
44
|
+
if ((version[0] === 18 && version[1] >= 11) || version[0] > 18) {
|
|
45
|
+
globals = globals_post_node_18_11;
|
|
46
|
+
}
|
|
47
|
+
} catch (e) {
|
|
48
|
+
// ignore
|
|
49
|
+
}
|
|
50
|
+
|
|
34
51
|
for (const name in globals) {
|
|
35
52
|
Object.defineProperty(globalThis, name, {
|
|
36
53
|
enumerable: true,
|
package/src/exports/public.d.ts
CHANGED
|
@@ -203,7 +203,7 @@ export interface Cookies {
|
|
|
203
203
|
|
|
204
204
|
/**
|
|
205
205
|
* Gets all cookies that were previously set with `cookies.set`, or from the request headers.
|
|
206
|
-
* @param opts the options, passed
|
|
206
|
+
* @param opts the options, passed directly to `cookie.parse`. See documentation [here](https://github.com/jshttp/cookie#cookieparsestr-options)
|
|
207
207
|
*/
|
|
208
208
|
getAll(opts?: import('cookie').CookieParseOptions): Array<{ name: string; value: string }>;
|
|
209
209
|
|
|
@@ -215,7 +215,7 @@ export interface Cookies {
|
|
|
215
215
|
* By default, the `path` of a cookie is the 'directory' of the current pathname. In most cases you should explicitly set `path: '/'` to make the cookie available throughout your app.
|
|
216
216
|
* @param name the name of the cookie
|
|
217
217
|
* @param value the cookie value
|
|
218
|
-
* @param opts the options, passed
|
|
218
|
+
* @param opts the options, passed directly to `cookie.serialize`. See documentation [here](https://github.com/jshttp/cookie#cookieserializename-value-options)
|
|
219
219
|
*/
|
|
220
220
|
set(name: string, value: string, opts?: import('cookie').CookieSerializeOptions): void;
|
|
221
221
|
|
|
@@ -224,7 +224,7 @@ export interface Cookies {
|
|
|
224
224
|
*
|
|
225
225
|
* By default, the `path` of a cookie is the 'directory' of the current pathname. In most cases you should explicitly set `path: '/'` to make the cookie available throughout your app.
|
|
226
226
|
* @param name the name of the cookie
|
|
227
|
-
* @param opts the options, passed
|
|
227
|
+
* @param opts the options, passed directly to `cookie.serialize`. The `path` must match the path of the cookie you want to delete. See documentation [here](https://github.com/jshttp/cookie#cookieserializename-value-options)
|
|
228
228
|
*/
|
|
229
229
|
delete(name: string, opts?: import('cookie').CookieSerializeOptions): void;
|
|
230
230
|
|
|
@@ -237,7 +237,7 @@ export interface Cookies {
|
|
|
237
237
|
*
|
|
238
238
|
* @param name the name of the cookie
|
|
239
239
|
* @param value the cookie value
|
|
240
|
-
* @param opts the options, passed
|
|
240
|
+
* @param opts the options, passed directly to `cookie.serialize`. See documentation [here](https://github.com/jshttp/cookie#cookieserializename-value-options)
|
|
241
241
|
*/
|
|
242
242
|
serialize(name: string, value: string, opts?: import('cookie').CookieSerializeOptions): string;
|
|
243
243
|
}
|
package/src/version.js
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -183,7 +183,7 @@ declare module '@sveltejs/kit' {
|
|
|
183
183
|
|
|
184
184
|
/**
|
|
185
185
|
* Gets all cookies that were previously set with `cookies.set`, or from the request headers.
|
|
186
|
-
* @param opts the options, passed
|
|
186
|
+
* @param opts the options, passed directly to `cookie.parse`. See documentation [here](https://github.com/jshttp/cookie#cookieparsestr-options)
|
|
187
187
|
*/
|
|
188
188
|
getAll(opts?: import('cookie').CookieParseOptions): Array<{ name: string; value: string }>;
|
|
189
189
|
|
|
@@ -195,7 +195,7 @@ declare module '@sveltejs/kit' {
|
|
|
195
195
|
* By default, the `path` of a cookie is the 'directory' of the current pathname. In most cases you should explicitly set `path: '/'` to make the cookie available throughout your app.
|
|
196
196
|
* @param name the name of the cookie
|
|
197
197
|
* @param value the cookie value
|
|
198
|
-
* @param opts the options, passed
|
|
198
|
+
* @param opts the options, passed directly to `cookie.serialize`. See documentation [here](https://github.com/jshttp/cookie#cookieserializename-value-options)
|
|
199
199
|
*/
|
|
200
200
|
set(name: string, value: string, opts?: import('cookie').CookieSerializeOptions): void;
|
|
201
201
|
|
|
@@ -204,7 +204,7 @@ declare module '@sveltejs/kit' {
|
|
|
204
204
|
*
|
|
205
205
|
* By default, the `path` of a cookie is the 'directory' of the current pathname. In most cases you should explicitly set `path: '/'` to make the cookie available throughout your app.
|
|
206
206
|
* @param name the name of the cookie
|
|
207
|
-
* @param opts the options, passed
|
|
207
|
+
* @param opts the options, passed directly to `cookie.serialize`. The `path` must match the path of the cookie you want to delete. See documentation [here](https://github.com/jshttp/cookie#cookieserializename-value-options)
|
|
208
208
|
*/
|
|
209
209
|
delete(name: string, opts?: import('cookie').CookieSerializeOptions): void;
|
|
210
210
|
|
|
@@ -217,7 +217,7 @@ declare module '@sveltejs/kit' {
|
|
|
217
217
|
*
|
|
218
218
|
* @param name the name of the cookie
|
|
219
219
|
* @param value the cookie value
|
|
220
|
-
* @param opts the options, passed
|
|
220
|
+
* @param opts the options, passed directly to `cookie.serialize`. See documentation [here](https://github.com/jshttp/cookie#cookieserializename-value-options)
|
|
221
221
|
*/
|
|
222
222
|
serialize(name: string, value: string, opts?: import('cookie').CookieSerializeOptions): string;
|
|
223
223
|
}
|
|
@@ -1821,10 +1821,10 @@ declare module '@sveltejs/kit/node/polyfills' {
|
|
|
1821
1821
|
/**
|
|
1822
1822
|
* Make various web APIs available as globals:
|
|
1823
1823
|
* - `crypto`
|
|
1824
|
-
* - `fetch`
|
|
1825
|
-
* - `Headers`
|
|
1826
|
-
* - `Request`
|
|
1827
|
-
* - `Response`
|
|
1824
|
+
* - `fetch` (only in node < 18.11)
|
|
1825
|
+
* - `Headers` (only in node < 18.11)
|
|
1826
|
+
* - `Request` (only in node < 18.11)
|
|
1827
|
+
* - `Response` (only in node < 18.11)
|
|
1828
1828
|
*/
|
|
1829
1829
|
export function installPolyfills(): void;
|
|
1830
1830
|
}
|
package/types/index.d.ts.map
CHANGED
|
@@ -136,5 +136,5 @@
|
|
|
136
136
|
null,
|
|
137
137
|
null
|
|
138
138
|
],
|
|
139
|
-
"mappings": ";;;;;;;;;kBA6BiBA,OAAOA;;;;;;;;;;;;;;;;;;;;;;aAsBZC,iBAAiBA;;;;;aAKjBC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;kBAuBTC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAuFPC,MAAMA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA6BNC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAiDPC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aA0YdC,MAAMA;;;;;;;;;;;aAWNC,iBAAiBA;;;;;;;;;;;aAWjBC,iBAAiBA;;;;;;;;aAQjBC,WAAWA;;;;;;;;;;aAUXC,IAAIA;;;;;;;;;;;;kBAYCC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA8FTC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;kBA0BfC,gBAAgBA;;;;;;;;;;;;;;;;;;;;;;;;aAwBrBC,cAAcA;;kBAETC,UAAUA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAoCVC,cAAcA;;;;;;;;;;kBAUdC,UAAUA;;;;;;;;;;;;;;;;;;kBAkBVC,aAAaA;;;;;;;;;;;;;;;;;;;kBAmBbC,IAAIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aA0CTC,YAAYA;;kBAEPC,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aA4FjBC,cAAcA;;;;;kBAKTC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;kBAuBdC,eAAeA;;;;;;;;;;;;;;;cAenBC,MAAMA;;;;;;kBAMFC,iBAAiBA;;;;kBAIjBC,WAAWA;;;;;;;;;;;;;;;;;;;aAmBhBC,UAAUA;;;;;;;kBAOLC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAuDpBC,MAAMA;;;;;;;;;;aAUNC,OAAOA;;;;;;;;;;;;;;;;aAgBPC,YAAYA;;;;;;;;;;;;kBC/rCXC,SAASA;;;;;;;;;;kBAqBTC,QAAQA;;;;;;;aDusCTC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAiDTC,QAAQA;;;;WEvwCRC,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAkDZC,GAAGA;;;;;;;;;;;;;;;;;;;;;;WAsBHC,aAAaA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAmElBC,UAAUA;;WAELC,MAAMA;;;;;;;;;MASXC,YAAYA;;WAEPC,WAAWA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAmCXC,yBAAyBA;;;;;;;;;;WAUzBC,yBAAyBA;;;;WAIzBC,sCAAsCA;;;;MAI3CC,8BAA8BA;MAC9BC,8BAA8BA;MAC9BC,2CAA2CA;;;;;;aAM3CC,eAAeA;;WAIVC,cAAcA;;;;;WAKdC,YAAYA;;;;;;MAMjBC,aAAaA;;;;;;;;;;;;;;;;;cDvMZC,aAAaA;;;;;;WEETC,KAAKA;;;;;;WAaLC,SAASA;;;;;;;;;;;;;;;WAsETC,YAAYA;;;;;;;WAOZC,QAAQA;;;;;;;;;;;;;MAwBbC,iBAAiBA;;;;;;;;WAUZC,UAAUA;;;;;;;;;;;;;WAaVC,SAASA;;;;;;;;;;;;;;;;;;;;;;;WAsGTC,YAAYA;;;;;;;;;;;;;MAajBC,kBAAkBA;;WAEbC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAsCZC,aAAaA;;WA2BRC,eAAeA;;;;;;MAMpBC,uBAAuBA;;MAEvBC,WAAWA;;;;;;;;WAQNC,QAAQA;;;;;;;;;MAwCbC,eAAeA;;;;;;;;;;;iBClXXC,QAAQA;;;;;;iBAaRC,IAAIA;;;;;;iBA8BJC,IAAIA;;;;;;iBAwBJC,IAAIA;;;;;;;;;;;;;;iBAsBJC,WAAWA;cChIdC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCiEJC,QAAQA;;;;iBCkCFC,UAAUA;;;;;;iBAeVC,WAAWA;;;;;;;;;;;;
|
|
139
|
+
"mappings": "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"
|
|
140
140
|
}
|