@vercel/node 5.5.6 → 5.5.7

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.js +7 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -70689,7 +70689,9 @@ var build = async ({
70689
70689
  config = {},
70690
70690
  meta = {},
70691
70691
  considerBuildCommand = false,
70692
- entrypointCallback
70692
+ entrypointCallback,
70693
+ checks = () => {
70694
+ }
70693
70695
  }) => {
70694
70696
  const baseDir = repoRootPath || workPath;
70695
70697
  const awsLambdaHandler = getAWSLambdaHandler(entrypoint, config);
@@ -70753,6 +70755,10 @@ var build = async ({
70753
70755
  if (runtime) {
70754
70756
  isEdgeFunction = isEdgeRuntime(runtime);
70755
70757
  }
70758
+ checks({
70759
+ config,
70760
+ isBun: (0, import_build_utils3.isBunVersion)(nodeVersion)
70761
+ });
70756
70762
  const useTypescript5 = considerBuildCommand;
70757
70763
  (0, import_build_utils3.debug)("Tracing input files...");
70758
70764
  const traceTime = Date.now();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/node",
3
- "version": "5.5.6",
3
+ "version": "5.5.7",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index",
6
6
  "homepage": "https://vercel.com/docs/runtimes#official-runtimes/node-js",
@@ -17,7 +17,7 @@
17
17
  "@edge-runtime/primitives": "4.1.0",
18
18
  "@edge-runtime/vm": "3.2.0",
19
19
  "@types/node": "16.18.11",
20
- "@vercel/build-utils": "13.0.1",
20
+ "@vercel/build-utils": "13.0.2",
21
21
  "@vercel/error-utils": "2.0.3",
22
22
  "@vercel/nft": "0.30.1",
23
23
  "@vercel/static-config": "3.1.2",
@@ -60,7 +60,7 @@
60
60
  "tree-kill": "1.2.2",
61
61
  "vite": "^5.1.6",
62
62
  "vitest": "^2.0.1",
63
- "@vercel/functions": "3.3.1"
63
+ "@vercel/functions": "3.3.2"
64
64
  },
65
65
  "scripts": {
66
66
  "build": "node build.mjs",