@vercel/node 2.9.5 → 2.9.6

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 +0 -4
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -300794,7 +300794,6 @@ exports.BaseFunctionConfigSchema = {
300794
300794
  type: 'object',
300795
300795
  properties: {
300796
300796
  runtime: { type: 'string' },
300797
- cron: { type: 'string' },
300798
300797
  memory: { type: 'number' },
300799
300798
  maxDuration: { type: 'number' },
300800
300799
  regions: {
@@ -301244,7 +301243,6 @@ const build = async ({ files, entrypoint, workPath, repoRootPath, config = {}, m
301244
301243
  }
301245
301244
  isEdgeFunction = utils_1.isEdgeRuntime(staticConfig.runtime);
301246
301245
  }
301247
- const cron = staticConfig?.cron;
301248
301246
  build_utils_1.debug('Tracing input files...');
301249
301247
  const traceTime = Date.now();
301250
301248
  const { preparedFiles, shouldAddSourcemapSupport } = await compile(workPath, baseDir, entrypointPath, config, nodeVersion, isEdgeFunction);
@@ -301278,7 +301276,6 @@ const build = async ({ files, entrypoint, workPath, repoRootPath, config = {}, m
301278
301276
  // TODO: remove - these two properties should not be required
301279
301277
  name: outputPath,
301280
301278
  deploymentTarget: 'v8-worker',
301281
- cron,
301282
301279
  });
301283
301280
  }
301284
301281
  else {
@@ -301293,7 +301290,6 @@ const build = async ({ files, entrypoint, workPath, repoRootPath, config = {}, m
301293
301290
  shouldAddSourcemapSupport,
301294
301291
  awsLambdaHandler,
301295
301292
  experimentalResponseStreaming,
301296
- cron,
301297
301293
  });
301298
301294
  }
301299
301295
  return { routes, output };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/node",
3
- "version": "2.9.5",
3
+ "version": "2.9.6",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index",
6
6
  "homepage": "https://vercel.com/docs/runtimes#official-runtimes/node-js",
@@ -31,9 +31,9 @@
31
31
  "dependencies": {
32
32
  "@edge-runtime/vm": "2.0.0",
33
33
  "@types/node": "14.18.33",
34
- "@vercel/build-utils": "6.2.4",
34
+ "@vercel/build-utils": "6.3.0",
35
35
  "@vercel/node-bridge": "3.1.11",
36
- "@vercel/static-config": "2.0.12",
36
+ "@vercel/static-config": "2.0.13",
37
37
  "edge-runtime": "2.0.0",
38
38
  "esbuild": "0.14.47",
39
39
  "exit-hook": "2.2.1",
@@ -64,5 +64,5 @@
64
64
  "test-listen": "1.1.0",
65
65
  "ts-morph": "12.0.0"
66
66
  },
67
- "gitHead": "9308a0fda5e14ee8a07b9a3506e4480f5f67d212"
67
+ "gitHead": "3d98d1cdea151b7125deb082c2c8469c865027d0"
68
68
  }