@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 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/cervel/find-entrypoint.d.ts
7
- declare const findEntrypoint: (cwd: string, options?: {
8
- ignoreRegex?: boolean;
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 };