@vercel/backends 0.0.8 → 0.0.9

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.
Files changed (2) hide show
  1. package/dist/index.mjs +3 -3
  2. package/package.json +3 -3
package/dist/index.mjs CHANGED
@@ -54231,7 +54231,6 @@ To use ${otherVersion}, manually opt in using corepack (https://vercel.com/docs/
54231
54231
  const versionString = cliType === "pnpm" ? `version ${lockfileVersion} ` : "";
54232
54232
  console.log(`Detected \`${detectedLockfile}\` ${versionString}generated by ${detectedPackageManager}`);
54233
54233
  }
54234
- if (cliType === "bun") console.warn("Warning: Bun is used as a package manager at build time only, not at runtime with Functions");
54235
54234
  }
54236
54235
  }
54237
54236
  if (cliType === "yarn" && !env.YARN_NODE_LINKER) newEnv.YARN_NODE_LINKER = "node-modules";
@@ -54820,7 +54819,7 @@ To use ${otherVersion}, manually opt in using corepack (https://vercel.com/docs/
54820
54819
  var import_node_path = __require("path");
54821
54820
  var import_node_fs = __toESM(__require("fs"));
54822
54821
  var import_node_module = __require("module");
54823
- function generateNodeBuilderFunctions(frameworkName, regex, validFilenames, validExtensions, nodeBuild) {
54822
+ function generateNodeBuilderFunctions(frameworkName, regex, validFilenames, validExtensions, nodeBuild, opts) {
54824
54823
  const entrypointsForMessage = validFilenames.map((filename) => `- ${filename}.{${validExtensions.join(",")}}`).join("\n");
54825
54824
  const require_ = (0, import_node_module.createRequire)(__filename);
54826
54825
  const build$2 = async (args) => {
@@ -54838,7 +54837,8 @@ To use ${otherVersion}, manually opt in using corepack (https://vercel.com/docs/
54838
54837
  considerBuildCommand: true,
54839
54838
  entrypointCallback: async () => {
54840
54839
  return entrypointCallback(args);
54841
- }
54840
+ },
54841
+ checks: opts?.checks ?? (() => {})
54842
54842
  });
54843
54843
  let version$1 = void 0;
54844
54844
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/backends",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.mjs",
6
6
  "homepage": "https://vercel.com/docs",
@@ -25,7 +25,7 @@
25
25
  "@vercel/static-config": "3.1.2",
26
26
  "fs-extra": "11.1.0",
27
27
  "rolldown": "1.0.0-beta.35",
28
- "@vercel/cervel": "0.0.4",
28
+ "@vercel/cervel": "0.0.5",
29
29
  "@vercel/introspection": "0.0.2"
30
30
  },
31
31
  "devDependencies": {
@@ -33,7 +33,7 @@
33
33
  "@types/fs-extra": "11",
34
34
  "@types/jest": "27.5.1",
35
35
  "@types/node": "22",
36
- "@vercel/build-utils": "13.0.1",
36
+ "@vercel/build-utils": "13.0.2",
37
37
  "execa": "3.2.0",
38
38
  "hono": "4.10.1",
39
39
  "jest-junit": "16.0.0",