nitropack-nightly 2.11.13-20250623-125435.6da3d458 → 2.11.13-20250625-143935.88d57459
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/dist/core/index.mjs +1 -0
- package/dist/kit/index.d.mts +1 -1
- package/dist/kit/index.d.ts +1 -1
- package/dist/meta/index.mjs +1 -1
- package/dist/presets/_nitro/nitro-dev.mjs +3 -1
- package/dist/presets/_unenv/node-compat/cloudflare.mjs +1 -1
- package/dist/presets/_unenv/node-compat/deno.mjs +7 -4
- package/dist/presets/_unenv/node-compat/netlify.mjs +7 -4
- package/dist/presets/_unenv/node-compat/vercel.mjs +2 -2
- package/dist/presets/_unenv/workerd/tls.d.mts +11 -1
- package/dist/presets/_unenv/workerd/tls.mjs +12 -26
- package/dist/rollup/index.mjs +3 -0
- package/dist/shared/{nitro.CUq3mBBf.d.mts → nitro.2TeRLAUU.d.mts} +1 -0
- package/dist/shared/{nitro.CUq3mBBf.d.ts → nitro.2TeRLAUU.d.ts} +1 -0
- package/dist/types/index.d.mts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/package.json +27 -27
package/dist/core/index.mjs
CHANGED
|
@@ -1311,6 +1311,7 @@ declare module "nitropack/types" {
|
|
|
1311
1311
|
forceConsistentCasingInFileNames: true,
|
|
1312
1312
|
strict: nitro.options.typescript.strict,
|
|
1313
1313
|
noEmit: true,
|
|
1314
|
+
skipLibCheck: true,
|
|
1314
1315
|
target: "ESNext",
|
|
1315
1316
|
module: "ESNext",
|
|
1316
1317
|
moduleResolution: nitro.options.experimental.typescriptBundlerResolution === false ? "Node" : "Bundler",
|
package/dist/kit/index.d.mts
CHANGED
package/dist/kit/index.d.ts
CHANGED
package/dist/meta/index.mjs
CHANGED
|
@@ -4,7 +4,9 @@ const nitroDev = defineNitroPreset(
|
|
|
4
4
|
extends: "node",
|
|
5
5
|
entry: "./runtime/nitro-dev",
|
|
6
6
|
output: {
|
|
7
|
-
|
|
7
|
+
dir: "{{ buildDir }}/dev",
|
|
8
|
+
serverDir: "{{ buildDir }}/dev",
|
|
9
|
+
publicDir: "{{ buildDir }}/dev"
|
|
8
10
|
},
|
|
9
11
|
externals: { trace: false },
|
|
10
12
|
inlineDynamicImports: true,
|
|
@@ -43,7 +43,7 @@ export const hybridNodeModules = [
|
|
|
43
43
|
"process",
|
|
44
44
|
// Missing exports: abort, allowedNodeEnvironmentFlags, arch, argv, argv0, assert, availableMemory, binding, chdir, config, constrainedMemory, cpuUsage, cwd, debugPort, dlopen, domain, emitWarning, execArgv, execPath, exitCode, finalization, getActiveResourcesInfo, getegid, geteuid, getgid, getgroups, getuid, hasUncaughtExceptionCaptureCallback, hrtime, initgroups, kill, loadEnvFile, memoryUsage, moduleLoadList, openStdin, pid, ppid, reallyExit, ref, release, report, resourceUsage, setSourceMapsEnabled, setUncaughtExceptionCaptureCallback, setegid, seteuid, setgid, setgroups, setuid, sourceMapsEnabled, stderr, stdin, stdout, title, umask, unref, uptime, version, versions
|
|
45
45
|
"tls",
|
|
46
|
-
// Missing exports:
|
|
46
|
+
// Missing exports: createSecurePair
|
|
47
47
|
"util"
|
|
48
48
|
// Missing exports: isBoolean, isBuffer, isDate, isError, isFunction, isNull, isNullOrUndefined, isNumber, isObject, isPrimitive, isRegExp, isString, isSymbol, isUndefined
|
|
49
49
|
];
|
|
@@ -6,10 +6,13 @@ export const builtnNodeModules = [
|
|
|
6
6
|
"_http_server",
|
|
7
7
|
// Missing exports: Server, ServerResponse, httpServerPreClose, kConnectionsCheckingInterval, kServerResponse, setupConnectionsTracking, storeHTTPOptions
|
|
8
8
|
"_stream_duplex",
|
|
9
|
+
// Missing exports: from, fromWeb, toWeb
|
|
9
10
|
"_stream_passthrough",
|
|
10
11
|
"_stream_readable",
|
|
12
|
+
// Missing exports: ReadableState, from, fromWeb, toWeb, wrap
|
|
11
13
|
"_stream_transform",
|
|
12
14
|
"_stream_writable",
|
|
15
|
+
// Missing exports: WritableState, fromWeb, toWeb
|
|
13
16
|
"_tls_common",
|
|
14
17
|
// Missing exports: SecureContext, translatePeerCertificate
|
|
15
18
|
"_tls_wrap",
|
|
@@ -62,7 +65,7 @@ export const builtnNodeModules = [
|
|
|
62
65
|
"perf_hooks",
|
|
63
66
|
// Missing exports: Performance, PerformanceMark, PerformanceMeasure, PerformanceObserverEntryList, PerformanceResourceTiming, createHistogram
|
|
64
67
|
"process",
|
|
65
|
-
// Missing exports: assert, availableMemory, binding, config, constrainedMemory,
|
|
68
|
+
// Missing exports: assert, availableMemory, binding, config, constrainedMemory, debugPort, domain, exitCode, features, finalization, getActiveResourcesInfo, getgroups, hasUncaughtExceptionCaptureCallback, initgroups, loadEnvFile, moduleLoadList, openStdin, ppid, reallyExit, ref, release, report, resourceUsage, setSourceMapsEnabled, setUncaughtExceptionCaptureCallback, setegid, seteuid, setgid, setgroups, setuid, sourceMapsEnabled, title, unref, uptime
|
|
66
69
|
"punycode",
|
|
67
70
|
"querystring",
|
|
68
71
|
"readline",
|
|
@@ -72,13 +75,13 @@ export const builtnNodeModules = [
|
|
|
72
75
|
"sqlite",
|
|
73
76
|
// Missing exports: StatementSync
|
|
74
77
|
"stream",
|
|
75
|
-
// Missing exports:
|
|
78
|
+
// Missing exports: destroy, promises
|
|
76
79
|
"stream/consumers",
|
|
77
80
|
"stream/promises",
|
|
78
81
|
"stream/web",
|
|
79
82
|
"string_decoder",
|
|
80
83
|
"sys",
|
|
81
|
-
// Missing exports: MIMEParams, MIMEType, getCallSite,
|
|
84
|
+
// Missing exports: MIMEParams, MIMEType, getCallSite, getSystemErrorMap, getSystemErrorMessage, parseEnv, transferableAbortController, transferableAbortSignal
|
|
82
85
|
"timers",
|
|
83
86
|
// Missing exports: active, enroll, unenroll
|
|
84
87
|
"timers/promises",
|
|
@@ -88,7 +91,7 @@ export const builtnNodeModules = [
|
|
|
88
91
|
"tty",
|
|
89
92
|
"url",
|
|
90
93
|
"util",
|
|
91
|
-
// Missing exports: MIMEParams, MIMEType, getCallSite,
|
|
94
|
+
// Missing exports: MIMEParams, MIMEType, getCallSite, getSystemErrorMap, getSystemErrorMessage, parseEnv, transferableAbortController, transferableAbortSignal
|
|
92
95
|
"util/types",
|
|
93
96
|
// Missing exports: isExternal
|
|
94
97
|
"v8",
|
|
@@ -6,10 +6,13 @@ export const builtnNodeModules = [
|
|
|
6
6
|
"_http_server",
|
|
7
7
|
// Missing exports: Server, ServerResponse, httpServerPreClose, kConnectionsCheckingInterval, kServerResponse, setupConnectionsTracking, storeHTTPOptions
|
|
8
8
|
"_stream_duplex",
|
|
9
|
+
// Missing exports: from, fromWeb, toWeb
|
|
9
10
|
"_stream_passthrough",
|
|
10
11
|
"_stream_readable",
|
|
12
|
+
// Missing exports: ReadableState, from, fromWeb, toWeb, wrap
|
|
11
13
|
"_stream_transform",
|
|
12
14
|
"_stream_writable",
|
|
15
|
+
// Missing exports: WritableState, fromWeb, toWeb
|
|
13
16
|
"_tls_common",
|
|
14
17
|
// Missing exports: SecureContext, translatePeerCertificate
|
|
15
18
|
"_tls_wrap",
|
|
@@ -62,7 +65,7 @@ export const builtnNodeModules = [
|
|
|
62
65
|
"perf_hooks",
|
|
63
66
|
// Missing exports: Performance, PerformanceMark, PerformanceMeasure, PerformanceObserverEntryList, PerformanceResourceTiming, createHistogram
|
|
64
67
|
"process",
|
|
65
|
-
// Missing exports: assert, availableMemory, binding, config, constrainedMemory,
|
|
68
|
+
// Missing exports: assert, availableMemory, binding, config, constrainedMemory, debugPort, domain, exitCode, features, finalization, getActiveResourcesInfo, getgroups, hasUncaughtExceptionCaptureCallback, initgroups, loadEnvFile, moduleLoadList, openStdin, ppid, reallyExit, ref, release, report, resourceUsage, setSourceMapsEnabled, setUncaughtExceptionCaptureCallback, setegid, seteuid, setgid, setgroups, setuid, sourceMapsEnabled, title, unref, uptime
|
|
66
69
|
"punycode",
|
|
67
70
|
"querystring",
|
|
68
71
|
"readline",
|
|
@@ -72,13 +75,13 @@ export const builtnNodeModules = [
|
|
|
72
75
|
"sqlite",
|
|
73
76
|
// Missing exports: StatementSync
|
|
74
77
|
"stream",
|
|
75
|
-
// Missing exports:
|
|
78
|
+
// Missing exports: destroy, promises
|
|
76
79
|
"stream/consumers",
|
|
77
80
|
"stream/promises",
|
|
78
81
|
"stream/web",
|
|
79
82
|
"string_decoder",
|
|
80
83
|
"sys",
|
|
81
|
-
// Missing exports: MIMEParams, MIMEType, getCallSite,
|
|
84
|
+
// Missing exports: MIMEParams, MIMEType, getCallSite, getSystemErrorMap, getSystemErrorMessage, parseEnv, transferableAbortController, transferableAbortSignal
|
|
82
85
|
"timers",
|
|
83
86
|
// Missing exports: active, enroll, unenroll
|
|
84
87
|
"timers/promises",
|
|
@@ -88,7 +91,7 @@ export const builtnNodeModules = [
|
|
|
88
91
|
"tty",
|
|
89
92
|
"url",
|
|
90
93
|
"util",
|
|
91
|
-
// Missing exports: MIMEParams, MIMEType, getCallSite,
|
|
94
|
+
// Missing exports: MIMEParams, MIMEType, getCallSite, getSystemErrorMap, getSystemErrorMessage, parseEnv, transferableAbortController, transferableAbortSignal
|
|
92
95
|
"util/types",
|
|
93
96
|
// Missing exports: isExternal
|
|
94
97
|
"v8",
|
|
@@ -2,11 +2,11 @@ export const builtnNodeModules = [
|
|
|
2
2
|
"assert",
|
|
3
3
|
// Missing exports: CallTracker, partialDeepStrictEqual
|
|
4
4
|
"async_hooks",
|
|
5
|
+
// Missing exports: asyncWrapProviders, createHook, executionAsyncId, executionAsyncResource, triggerAsyncId
|
|
5
6
|
"buffer",
|
|
6
7
|
"events",
|
|
7
|
-
// Missing exports: captureRejections, init
|
|
8
8
|
"util"
|
|
9
|
-
// Missing exports: isBoolean, isBuffer, isDate, isError, isFunction, isNull, isNullOrUndefined, isNumber, isObject, isPrimitive, isRegExp, isString, isSymbol, isUndefined
|
|
9
|
+
// Missing exports: getCallSites, getSystemErrorMap, getSystemErrorMessage, getSystemErrorName, isBoolean, isBuffer, isDate, isError, isFunction, isNull, isNullOrUndefined, isNumber, isObject, isPrimitive, isRegExp, isString, isSymbol, isUndefined, parseEnv, styleText
|
|
10
10
|
];
|
|
11
11
|
export const hybridNodeModules = [];
|
|
12
12
|
export const unsupportedNodeModules = [
|
|
@@ -4,6 +4,16 @@ export const SecureContext: any;
|
|
|
4
4
|
export const checkServerIdentity: any;
|
|
5
5
|
export const convertALPNProtocols: any;
|
|
6
6
|
export const createSecureContext: any;
|
|
7
|
+
export const CLIENT_RENEG_LIMIT: any;
|
|
8
|
+
export const CLIENT_RENEG_WINDOW: any;
|
|
9
|
+
export const DEFAULT_CIPHERS: any;
|
|
10
|
+
export const DEFAULT_ECDH_CURVE: any;
|
|
11
|
+
export const DEFAULT_MAX_VERSION: any;
|
|
12
|
+
export const DEFAULT_MIN_VERSION: any;
|
|
13
|
+
export const Server: any;
|
|
14
|
+
export const createServer: any;
|
|
15
|
+
export const getCiphers: any;
|
|
16
|
+
export const rootCertificates: any;
|
|
7
17
|
declare namespace _default {
|
|
8
18
|
export { TLSSocket };
|
|
9
19
|
export { connect };
|
|
@@ -18,9 +28,9 @@ declare namespace _default {
|
|
|
18
28
|
export { checkServerIdentity };
|
|
19
29
|
export { convertALPNProtocols };
|
|
20
30
|
export { createSecureContext };
|
|
21
|
-
export { createSecurePair };
|
|
22
31
|
export { createServer };
|
|
23
32
|
export { getCiphers };
|
|
24
33
|
export { rootCertificates };
|
|
34
|
+
export { createSecurePair };
|
|
25
35
|
}
|
|
26
36
|
export default _default;
|
|
@@ -2,21 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
import workerdTLS from "#workerd/node:tls";
|
|
4
4
|
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
DEFAULT_CIPHERS,
|
|
9
|
-
DEFAULT_ECDH_CURVE,
|
|
10
|
-
DEFAULT_MAX_VERSION,
|
|
11
|
-
DEFAULT_MIN_VERSION,
|
|
12
|
-
Server,
|
|
13
|
-
createSecurePair,
|
|
14
|
-
createServer,
|
|
15
|
-
getCiphers,
|
|
16
|
-
rootCertificates,
|
|
17
|
-
} from "unenv/node/tls";
|
|
5
|
+
import { createSecurePair } from "unenv/node/tls";
|
|
6
|
+
|
|
7
|
+
export { createSecurePair } from "unenv/node/tls";
|
|
18
8
|
|
|
19
|
-
export {
|
|
9
|
+
export const {
|
|
10
|
+
TLSSocket,
|
|
11
|
+
connect,
|
|
12
|
+
SecureContext,
|
|
13
|
+
checkServerIdentity,
|
|
14
|
+
convertALPNProtocols,
|
|
15
|
+
createSecureContext,
|
|
20
16
|
CLIENT_RENEG_LIMIT,
|
|
21
17
|
CLIENT_RENEG_WINDOW,
|
|
22
18
|
DEFAULT_CIPHERS,
|
|
@@ -24,26 +20,15 @@ export {
|
|
|
24
20
|
DEFAULT_MAX_VERSION,
|
|
25
21
|
DEFAULT_MIN_VERSION,
|
|
26
22
|
Server,
|
|
27
|
-
createSecurePair,
|
|
28
23
|
createServer,
|
|
29
24
|
getCiphers,
|
|
30
25
|
rootCertificates,
|
|
31
|
-
} from "unenv/node/tls";
|
|
32
|
-
|
|
33
|
-
export const {
|
|
34
|
-
TLSSocket,
|
|
35
|
-
connect,
|
|
36
|
-
SecureContext,
|
|
37
|
-
checkServerIdentity,
|
|
38
|
-
convertALPNProtocols,
|
|
39
|
-
createSecureContext,
|
|
40
26
|
} = workerdTLS;
|
|
41
27
|
|
|
42
28
|
export default {
|
|
43
29
|
// native
|
|
44
30
|
TLSSocket,
|
|
45
31
|
connect,
|
|
46
|
-
// polyfill
|
|
47
32
|
CLIENT_RENEG_LIMIT,
|
|
48
33
|
CLIENT_RENEG_WINDOW,
|
|
49
34
|
DEFAULT_CIPHERS,
|
|
@@ -55,8 +40,9 @@ export default {
|
|
|
55
40
|
checkServerIdentity,
|
|
56
41
|
convertALPNProtocols,
|
|
57
42
|
createSecureContext,
|
|
58
|
-
createSecurePair,
|
|
59
43
|
createServer,
|
|
60
44
|
getCiphers,
|
|
61
45
|
rootCertificates,
|
|
46
|
+
// polyfill
|
|
47
|
+
createSecurePair,
|
|
62
48
|
};
|
package/dist/rollup/index.mjs
CHANGED
|
@@ -532,6 +532,9 @@ function externals$1(opts) {
|
|
|
532
532
|
const dst = join(opts.outDir, "node_modules", pkgPath, subpath);
|
|
533
533
|
await promises.mkdir(dirname(dst), { recursive: true });
|
|
534
534
|
await promises.copyFile(src, dst);
|
|
535
|
+
if (opts.chmod) {
|
|
536
|
+
await promises.chmod(dst, opts.chmod === true ? 420 : opts.chmod);
|
|
537
|
+
}
|
|
535
538
|
}
|
|
536
539
|
const pkgJSON = pkg.versions[version].pkgJSON;
|
|
537
540
|
applyProductionCondition(pkgJSON.exports);
|
package/dist/types/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { App, Router, H3Event, RouterMethod } from 'h3';
|
|
2
2
|
import { FetchRequest, FetchOptions, FetchResponse } from 'ofetch';
|
|
3
|
-
import { a as NitroOptions, b as NitroConfig, N as NitroModule } from '../shared/nitro.
|
|
4
|
-
export { A as AppConfig, C as CacheEntry, c as CacheOptions, d as CachedEventHandlerOptions, e as CompressOptions, g as DatabaseConnectionConfig, h as DatabaseConnectionConfigs, D as DatabaseConnectionName, l as DevServerOptions, I as EsbuildOptions, O as HTTPStatusCode, L as LoadConfigOptions, u as Nitro, y as NitroBuildInfo, q as NitroDevEventHandler, n as NitroDevServer, v as NitroDynamicConfig, r as NitroErrorHandler, p as NitroEventHandler, x as NitroFrameworkInfo, s as NitroHooks, t as NitroModuleInput, k as NitroOpenAPIConfig, E as NitroPreset, F as NitroPresetMeta, Q as NitroRouteConfig, o as NitroRouteMeta, T as NitroRouteRules, j as NitroRuntimeConfig, i as NitroRuntimeConfigApp, w as NitroTypes, m as NitroWorker, J as NodeExternalsOptions, B as PrerenderGenerateRoute, z as PrerenderRoute, P as PublicAssetDir, M as RawOptions, R as ResponseCacheEntry, G as RollupConfig, H as RollupVirtualOptions, S as ServerAssetDir, K as ServerAssetOptions, f as StorageMounts, V as VirtualModule } from '../shared/nitro.
|
|
3
|
+
import { a as NitroOptions, b as NitroConfig, N as NitroModule } from '../shared/nitro.2TeRLAUU.mjs';
|
|
4
|
+
export { A as AppConfig, C as CacheEntry, c as CacheOptions, d as CachedEventHandlerOptions, e as CompressOptions, g as DatabaseConnectionConfig, h as DatabaseConnectionConfigs, D as DatabaseConnectionName, l as DevServerOptions, I as EsbuildOptions, O as HTTPStatusCode, L as LoadConfigOptions, u as Nitro, y as NitroBuildInfo, q as NitroDevEventHandler, n as NitroDevServer, v as NitroDynamicConfig, r as NitroErrorHandler, p as NitroEventHandler, x as NitroFrameworkInfo, s as NitroHooks, t as NitroModuleInput, k as NitroOpenAPIConfig, E as NitroPreset, F as NitroPresetMeta, Q as NitroRouteConfig, o as NitroRouteMeta, T as NitroRouteRules, j as NitroRuntimeConfig, i as NitroRuntimeConfigApp, w as NitroTypes, m as NitroWorker, J as NodeExternalsOptions, B as PrerenderGenerateRoute, z as PrerenderRoute, P as PublicAssetDir, M as RawOptions, R as ResponseCacheEntry, G as RollupConfig, H as RollupVirtualOptions, S as ServerAssetDir, K as ServerAssetOptions, f as StorageMounts, V as VirtualModule } from '../shared/nitro.2TeRLAUU.mjs';
|
|
5
5
|
import { Hookable } from 'hookable';
|
|
6
6
|
import { NitroRuntimeHooks as NitroRuntimeHooks$1 } from 'nitropack';
|
|
7
7
|
import { AbstractRequest, AbstractResponse } from 'node-mock-http';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { App, Router, H3Event, RouterMethod } from 'h3';
|
|
2
2
|
import { FetchRequest, FetchOptions, FetchResponse } from 'ofetch';
|
|
3
|
-
import { a as NitroOptions, b as NitroConfig, N as NitroModule } from '../shared/nitro.
|
|
4
|
-
export { A as AppConfig, C as CacheEntry, c as CacheOptions, d as CachedEventHandlerOptions, e as CompressOptions, g as DatabaseConnectionConfig, h as DatabaseConnectionConfigs, D as DatabaseConnectionName, l as DevServerOptions, I as EsbuildOptions, O as HTTPStatusCode, L as LoadConfigOptions, u as Nitro, y as NitroBuildInfo, q as NitroDevEventHandler, n as NitroDevServer, v as NitroDynamicConfig, r as NitroErrorHandler, p as NitroEventHandler, x as NitroFrameworkInfo, s as NitroHooks, t as NitroModuleInput, k as NitroOpenAPIConfig, E as NitroPreset, F as NitroPresetMeta, Q as NitroRouteConfig, o as NitroRouteMeta, T as NitroRouteRules, j as NitroRuntimeConfig, i as NitroRuntimeConfigApp, w as NitroTypes, m as NitroWorker, J as NodeExternalsOptions, B as PrerenderGenerateRoute, z as PrerenderRoute, P as PublicAssetDir, M as RawOptions, R as ResponseCacheEntry, G as RollupConfig, H as RollupVirtualOptions, S as ServerAssetDir, K as ServerAssetOptions, f as StorageMounts, V as VirtualModule } from '../shared/nitro.
|
|
3
|
+
import { a as NitroOptions, b as NitroConfig, N as NitroModule } from '../shared/nitro.2TeRLAUU.js';
|
|
4
|
+
export { A as AppConfig, C as CacheEntry, c as CacheOptions, d as CachedEventHandlerOptions, e as CompressOptions, g as DatabaseConnectionConfig, h as DatabaseConnectionConfigs, D as DatabaseConnectionName, l as DevServerOptions, I as EsbuildOptions, O as HTTPStatusCode, L as LoadConfigOptions, u as Nitro, y as NitroBuildInfo, q as NitroDevEventHandler, n as NitroDevServer, v as NitroDynamicConfig, r as NitroErrorHandler, p as NitroEventHandler, x as NitroFrameworkInfo, s as NitroHooks, t as NitroModuleInput, k as NitroOpenAPIConfig, E as NitroPreset, F as NitroPresetMeta, Q as NitroRouteConfig, o as NitroRouteMeta, T as NitroRouteRules, j as NitroRuntimeConfig, i as NitroRuntimeConfigApp, w as NitroTypes, m as NitroWorker, J as NodeExternalsOptions, B as PrerenderGenerateRoute, z as PrerenderRoute, P as PublicAssetDir, M as RawOptions, R as ResponseCacheEntry, G as RollupConfig, H as RollupVirtualOptions, S as ServerAssetDir, K as ServerAssetOptions, f as StorageMounts, V as VirtualModule } from '../shared/nitro.2TeRLAUU.js';
|
|
5
5
|
import { Hookable } from 'hookable';
|
|
6
6
|
import { NitroRuntimeHooks as NitroRuntimeHooks$1 } from 'nitropack';
|
|
7
7
|
import { AbstractRequest, AbstractResponse } from 'node-mock-http';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nitropack-nightly",
|
|
3
|
-
"version": "2.11.13-
|
|
3
|
+
"version": "2.11.13-20250625-143935.88d57459",
|
|
4
4
|
"description": "Build and Deploy Universal JavaScript Servers",
|
|
5
5
|
"repository": "nitrojs/nitro",
|
|
6
6
|
"license": "MIT",
|
|
@@ -99,33 +99,33 @@
|
|
|
99
99
|
},
|
|
100
100
|
"dependencies": {
|
|
101
101
|
"@cloudflare/kv-asset-handler": "^0.4.0",
|
|
102
|
-
"@netlify/functions": "^3.1.
|
|
102
|
+
"@netlify/functions": "^3.1.10",
|
|
103
103
|
"@rollup/plugin-alias": "^5.1.1",
|
|
104
|
-
"@rollup/plugin-commonjs": "^28.0.
|
|
104
|
+
"@rollup/plugin-commonjs": "^28.0.6",
|
|
105
105
|
"@rollup/plugin-inject": "^5.0.5",
|
|
106
106
|
"@rollup/plugin-json": "^6.1.0",
|
|
107
107
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
108
108
|
"@rollup/plugin-replace": "^6.0.2",
|
|
109
109
|
"@rollup/plugin-terser": "^0.4.4",
|
|
110
|
-
"@vercel/nft": "^0.29.
|
|
110
|
+
"@vercel/nft": "^0.29.4",
|
|
111
111
|
"archiver": "^7.0.1",
|
|
112
|
-
"c12": "^3.0.
|
|
112
|
+
"c12": "^3.0.4",
|
|
113
113
|
"chokidar": "^4.0.3",
|
|
114
114
|
"citty": "^0.1.6",
|
|
115
115
|
"compatx": "^0.2.0",
|
|
116
116
|
"confbox": "^0.2.2",
|
|
117
117
|
"consola": "^3.4.2",
|
|
118
118
|
"cookie-es": "^2.0.0",
|
|
119
|
-
"croner": "^9.
|
|
119
|
+
"croner": "^9.1.0",
|
|
120
120
|
"crossws": "^0.3.5",
|
|
121
121
|
"db0": "^0.3.2",
|
|
122
122
|
"defu": "^6.1.4",
|
|
123
123
|
"destr": "^2.0.5",
|
|
124
124
|
"dot-prop": "^9.0.0",
|
|
125
|
-
"esbuild": "^0.25.
|
|
125
|
+
"esbuild": "^0.25.5",
|
|
126
126
|
"escape-string-regexp": "^5.0.0",
|
|
127
127
|
"etag": "^1.8.1",
|
|
128
|
-
"exsolve": "^1.0.
|
|
128
|
+
"exsolve": "^1.0.7",
|
|
129
129
|
"globby": "^14.1.0",
|
|
130
130
|
"gzip-size": "^7.0.0",
|
|
131
131
|
"h3": "npm:h3-nightly@latest",
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"mime": "^4.0.7",
|
|
142
142
|
"mlly": "^1.7.4",
|
|
143
143
|
"node-fetch-native": "^1.6.6",
|
|
144
|
-
"node-mock-http": "^1.0.
|
|
144
|
+
"node-mock-http": "^1.0.1",
|
|
145
145
|
"ofetch": "^1.4.1",
|
|
146
146
|
"ohash": "^2.0.11",
|
|
147
147
|
"pathe": "^2.0.3",
|
|
@@ -149,8 +149,8 @@
|
|
|
149
149
|
"pkg-types": "^2.1.0",
|
|
150
150
|
"pretty-bytes": "^6.1.1",
|
|
151
151
|
"radix3": "^1.1.2",
|
|
152
|
-
"rollup": "^4.
|
|
153
|
-
"rollup-plugin-visualizer": "^
|
|
152
|
+
"rollup": "^4.44.0",
|
|
153
|
+
"rollup-plugin-visualizer": "^6.0.3",
|
|
154
154
|
"scule": "^1.3.0",
|
|
155
155
|
"semver": "^7.7.2",
|
|
156
156
|
"serve-placeholder": "^2.0.2",
|
|
@@ -161,49 +161,49 @@
|
|
|
161
161
|
"ultrahtml": "^1.6.0",
|
|
162
162
|
"uncrypto": "^0.1.3",
|
|
163
163
|
"unctx": "^2.4.1",
|
|
164
|
-
"unenv": "^2.0.0-rc.
|
|
164
|
+
"unenv": "^2.0.0-rc.18",
|
|
165
165
|
"unimport": "^5.0.1",
|
|
166
166
|
"unplugin-utils": "^0.2.4",
|
|
167
167
|
"unstorage": "^1.16.0",
|
|
168
168
|
"untyped": "^2.0.0",
|
|
169
169
|
"unwasm": "^0.3.9",
|
|
170
|
-
"youch": "
|
|
170
|
+
"youch": "4.1.0-beta.8",
|
|
171
171
|
"youch-core": "^0.3.2"
|
|
172
172
|
},
|
|
173
173
|
"devDependencies": {
|
|
174
174
|
"@azure/functions": "^3.5.1",
|
|
175
175
|
"@azure/static-web-apps-cli": "^2.0.6",
|
|
176
|
-
"@cloudflare/workers-types": "^4.
|
|
176
|
+
"@cloudflare/workers-types": "^4.20250620.0",
|
|
177
177
|
"@deno/types": "^0.0.1",
|
|
178
|
-
"@netlify/edge-functions": "^2.
|
|
179
|
-
"@scalar/api-reference": "^1.
|
|
178
|
+
"@netlify/edge-functions": "^2.15.2",
|
|
179
|
+
"@scalar/api-reference": "^1.31.18",
|
|
180
180
|
"@types/archiver": "^6.0.3",
|
|
181
|
-
"@types/aws-lambda": "^8.10.
|
|
182
|
-
"@types/estree": "^1.0.
|
|
183
|
-
"@types/etag": "^1.8.
|
|
181
|
+
"@types/aws-lambda": "^8.10.150",
|
|
182
|
+
"@types/estree": "^1.0.8",
|
|
183
|
+
"@types/etag": "^1.8.4",
|
|
184
184
|
"@types/fs-extra": "^11.0.4",
|
|
185
185
|
"@types/node-fetch": "^2.6.12",
|
|
186
186
|
"@types/semver": "^7.7.0",
|
|
187
|
-
"@types/serve-static": "^1.15.
|
|
187
|
+
"@types/serve-static": "^1.15.8",
|
|
188
188
|
"@types/xml2js": "^0.4.14",
|
|
189
|
-
"@vitest/coverage-v8": "^3.
|
|
189
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
190
190
|
"automd": "^0.4.0",
|
|
191
191
|
"changelogen": "^0.6.1",
|
|
192
192
|
"edge-runtime": "^4.0.1",
|
|
193
|
-
"eslint": "^9.
|
|
193
|
+
"eslint": "^9.29.0",
|
|
194
194
|
"eslint-config-unjs": "^0.4.2",
|
|
195
|
-
"execa": "^9.
|
|
195
|
+
"execa": "^9.6.0",
|
|
196
196
|
"expect-type": "^1.2.1",
|
|
197
197
|
"firebase-admin": "^12.7.0",
|
|
198
198
|
"firebase-functions": "^4.9.0",
|
|
199
199
|
"get-port-please": "^3.1.2",
|
|
200
|
-
"miniflare": "^4.
|
|
200
|
+
"miniflare": "^4.20250617.4",
|
|
201
201
|
"ohash-v1": "npm:ohash@^1.1.6",
|
|
202
|
-
"prettier": "^3.
|
|
202
|
+
"prettier": "^3.6.1",
|
|
203
203
|
"typescript": "^5.8.3",
|
|
204
204
|
"unbuild": "^3.5.0",
|
|
205
|
-
"undici": "^7.
|
|
206
|
-
"vitest": "^3.
|
|
205
|
+
"undici": "^7.10.0",
|
|
206
|
+
"vitest": "^3.2.4",
|
|
207
207
|
"xml2js": "^0.6.2"
|
|
208
208
|
},
|
|
209
209
|
"peerDependencies": {
|