@vercel/backends 0.0.26 → 0.0.28
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/index.d.mts +4 -5
- package/dist/index.mjs +889 -412
- package/dist/introspection/express.mjs +1 -2
- package/dist/introspection/hono.mjs +2 -5
- package/dist/introspection/loaders/cjs.cjs +2 -6
- package/dist/rolldown/cjs-hooks.cjs +208 -0
- package/dist/rolldown/cjs-hooks.d.cts +1 -0
- package/dist/rolldown/esm.d.mts +1 -0
- package/dist/rolldown/esm.mjs +7 -0
- package/dist/rolldown/hooks.d.mts +27 -0
- package/dist/rolldown/hooks.mjs +84 -0
- package/dist/rolldown/index.d.mts +16 -0
- package/dist/rolldown/index.mjs +301 -0
- package/package.json +5 -7
package/dist/index.d.mts
CHANGED
|
@@ -3,10 +3,9 @@ import * as _vercel_build_utils0 from "@vercel/build-utils";
|
|
|
3
3
|
import { BuildOptions, BuildV2, Files, PrepareCache, Span } from "@vercel/build-utils";
|
|
4
4
|
import { ParseArgsConfig } from "node:util";
|
|
5
5
|
|
|
6
|
-
//#region src/
|
|
7
|
-
declare const findEntrypoint: (cwd: string
|
|
8
|
-
|
|
9
|
-
}) => Promise<string>;
|
|
6
|
+
//#region src/find-entrypoint.d.ts
|
|
7
|
+
declare const findEntrypoint: (cwd: string) => Promise<string | undefined>;
|
|
8
|
+
declare const findEntrypointOrThrow: (cwd: string) => Promise<string>;
|
|
10
9
|
//#endregion
|
|
11
10
|
//#region src/cervel/types.d.ts
|
|
12
11
|
/**
|
|
@@ -103,4 +102,4 @@ declare const version = 2;
|
|
|
103
102
|
declare const build: BuildV2;
|
|
104
103
|
declare const prepareCache: PrepareCache;
|
|
105
104
|
//#endregion
|
|
106
|
-
export { type CervelBuildOptions, type CervelServeOptions, type PathOptions, build, build$1 as cervelBuild, serve as cervelServe, findEntrypoint, getBuildSummary, introspectApp, nodeFileTrace, prepareCache, srvxOptions, version };
|
|
105
|
+
export { type CervelBuildOptions, type CervelServeOptions, type PathOptions, build, build$1 as cervelBuild, serve as cervelServe, findEntrypoint, findEntrypointOrThrow, getBuildSummary, introspectApp, nodeFileTrace, prepareCache, srvxOptions, version };
|