@sveltejs/adapter-netlify 2.0.7 → 3.0.0
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/files/esm/serverless.js +5 -30
- package/files/esm/shims.js +9 -19676
- package/index.js +1 -1
- package/package.json +18 -18
package/files/esm/serverless.js
CHANGED
|
@@ -1,34 +1,9 @@
|
|
|
1
1
|
import './shims.js';
|
|
2
2
|
import { Server } from '0SERVER';
|
|
3
|
-
import 'node:stream/web';
|
|
4
3
|
import 'node:buffer';
|
|
5
4
|
import 'node:crypto';
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
import 'http';
|
|
9
|
-
import 'stream';
|
|
10
|
-
import 'buffer';
|
|
11
|
-
import 'util';
|
|
12
|
-
import 'querystring';
|
|
13
|
-
import 'stream/web';
|
|
14
|
-
import 'worker_threads';
|
|
15
|
-
import 'perf_hooks';
|
|
16
|
-
import 'util/types';
|
|
17
|
-
import 'events';
|
|
18
|
-
import 'tls';
|
|
19
|
-
import 'async_hooks';
|
|
20
|
-
import 'console';
|
|
21
|
-
import 'url';
|
|
22
|
-
import 'zlib';
|
|
23
|
-
import 'string_decoder';
|
|
24
|
-
import 'crypto';
|
|
25
|
-
import 'diagnostics_channel';
|
|
26
|
-
|
|
27
|
-
var setCookieExports = {};
|
|
28
|
-
var setCookie = {
|
|
29
|
-
get exports(){ return setCookieExports; },
|
|
30
|
-
set exports(v){ setCookieExports = v; },
|
|
31
|
-
};
|
|
5
|
+
|
|
6
|
+
var setCookie = {exports: {}};
|
|
32
7
|
|
|
33
8
|
var defaultParseOptions = {
|
|
34
9
|
decodeValues: true,
|
|
@@ -251,9 +226,9 @@ function splitCookiesString(cookiesString) {
|
|
|
251
226
|
}
|
|
252
227
|
|
|
253
228
|
setCookie.exports = parse;
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
var splitCookiesString_1 =
|
|
229
|
+
setCookie.exports.parse = parse;
|
|
230
|
+
setCookie.exports.parseString = parseString;
|
|
231
|
+
var splitCookiesString_1 = setCookie.exports.splitCookiesString = splitCookiesString;
|
|
257
232
|
|
|
258
233
|
/**
|
|
259
234
|
* Splits headers into two categories: single value and multi value
|