vercel-cli 48.1.1__py3-none-any.whl → 48.1.6__py3-none-any.whl

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.

Potentially problematic release.


This version of vercel-cli might be problematic. Click here for more details.

@@ -144709,7 +144709,10 @@ var init_unzip = __esm({
144709
144709
 
144710
144710
  // src/util/build/write-build-result.ts
144711
144711
  async function writeBuildResult(repoRootPath, outputDir, buildResult, build2, builder, builderPkg, vercelConfig, standalone = false) {
144712
- const { version: version2 } = builder;
144712
+ let version2 = builder.version;
144713
+ if ("experimentalVersion" in builder && process.env.VERCEL_EXPERIMENTAL_EXPRESS_BUILD === "1" && "name" in builder && builder.name === "express") {
144714
+ version2 = builder.experimentalVersion;
144715
+ }
144713
144716
  if (typeof version2 !== "number" || version2 === 2) {
144714
144717
  return writeBuildResultV2(
144715
144718
  repoRootPath,
@@ -145101,8 +145104,8 @@ function filesWithoutFsRefs(files, repoRootPath, sharedDest, standalone) {
145101
145104
  filePathMap = {};
145102
145105
  if (standalone && sharedDest) {
145103
145106
  shared[path11] = file;
145104
- filePathMap[(0, import_build_utils11.normalizePath)((0, import_path21.join)(sharedDest, path11))] = (0, import_build_utils11.normalizePath)(
145105
- (0, import_path21.relative)(repoRootPath, (0, import_path21.join)(sharedDest, file.fsPath))
145107
+ filePathMap[(0, import_build_utils11.normalizePath)(path11)] = (0, import_build_utils11.normalizePath)(
145108
+ (0, import_path21.relative)(repoRootPath, (0, import_path21.join)(sharedDest, path11))
145106
145109
  );
145107
145110
  } else {
145108
145111
  filePathMap[(0, import_build_utils11.normalizePath)(path11)] = (0, import_build_utils11.normalizePath)(
@@ -147089,7 +147092,12 @@ async function doBuild(client2, project, buildsJson, cwd, outputDir, span, stand
147089
147092
  let buildResult;
147090
147093
  try {
147091
147094
  buildResult = await builderSpan.trace(
147092
- () => builder.build(buildOptions)
147095
+ () => {
147096
+ if (process.env.VERCEL_EXPERIMENTAL_EXPRESS_BUILD === "1" && "name" in builder && builder.name === "express" && "experimentalBuild" in builder && typeof builder.experimentalBuild === "function") {
147097
+ return builder.experimentalBuild(buildOptions);
147098
+ }
147099
+ return builder.build(buildOptions);
147100
+ }
147093
147101
  );
147094
147102
  if (buildConfig.zeroConfig && isFrontendBuilder && "output" in buildResult && !buildResult.routes) {
147095
147103
  const framework2 = import_frameworks5.frameworkList.find(
@@ -37,5 +37,5 @@
37
37
  "vitest-run": "vitest --config ./vitest.config.mts",
38
38
  "vitest-unit": "jest test/unit/ --listTests"
39
39
  },
40
- "version": "48.1.1"
40
+ "version": "48.1.6"
41
41
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vercel-cli
3
- Version: 48.1.1
3
+ Version: 48.1.6
4
4
  Summary: Vercel CLI packaged for Python (bundled Node.js, vendored npm)
5
5
  Project-URL: Homepage, https://github.com/nuage-studio/vercel-cli-python
6
6
  Project-URL: Repository, https://github.com/nuage-studio/vercel-cli-python
@@ -1,10 +1,10 @@
1
1
  vercel_cli/vendor/LICENSE,sha256=sHDXe_ssUqHdaZbeDOX2TEmgylXIibFjqWPd9csAHuI,11343
2
2
  vercel_cli/vendor/README.md,sha256=2ZrJzd7x21xlpsOZ9QKG6478zbXb8-3YN8cPyzPxZNk,1799
3
- vercel_cli/vendor/package.json,sha256=2tZk4woTfj8fXJBd--9BaeEvsO5oRrY7T_FgRNHHl94,1261
3
+ vercel_cli/vendor/package.json,sha256=Ov5k-Ezd5QwxqsrNbvudKWyzu6S_pKKyMTW0WpVBMKg,1261
4
4
  vercel_cli/vendor/dist/VERCEL_DIR_README.txt,sha256=9dHtD1AyrhKJMfRkWbX6oa9jGfwt-z56X-VKhL-T29Y,520
5
5
  vercel_cli/vendor/dist/builder-worker.js,sha256=RgutTXJcurRisV2NtlruuPDtCBOi8eHSGCo3n4GcCIM,1969
6
6
  vercel_cli/vendor/dist/get-latest-worker.js,sha256=w7nK8nQtlYad_SKuFQGw_sg7_bb-p0uHOf1MYiwrUNs,7964
7
- vercel_cli/vendor/dist/index.js,sha256=CQu4B0w4Gn5tHXaot_9iLG8HKmqHtCmAJj6fDrWIosI,8880374
7
+ vercel_cli/vendor/dist/index.js,sha256=wv1JJrdNJEQV2QozYLwfzPEAhFrcpeMd44xfL2J1nwM,8880842
8
8
  vercel_cli/vendor/dist/vc.js,sha256=AAC4u6uwjpO0KfFVuLRs5YWXjW4aMCkgSj_45hR3W8k,340
9
9
  vercel_cli/vendor/node_modules/.package-lock.json,sha256=rEp5PAxk6jbsOEZZ_HOWnFpAIv94UIaPJ7TiNHgbY80,1053
10
10
  vercel_cli/vendor/node_modules/@vercel/build-utils/CHANGELOG.md,sha256=ji-V7NgIUH1Fj-lmUh0LmIxhS6bq_0TW7xFH0e9yiF8,18051
@@ -99,7 +99,7 @@ vercel_cli/vendor/node_modules/@vercel/python/LICENSE,sha256=sHDXe_ssUqHdaZbeDOX
99
99
  vercel_cli/vendor/node_modules/@vercel/python/package.json,sha256=rLcVtrCKoYOp00gwMR7LmyfI_H-8M01PnBZsGICTLfs,1044
100
100
  vercel_cli/vendor/node_modules/@vercel/python/vc_init.py,sha256=A7949hQi18B9yqPkTr1bepToi7nKRh_yRP7GwmsI-Ww,28201
101
101
  vercel_cli/vendor/node_modules/@vercel/python/dist/index.js,sha256=8ta98iZTEyUQPkd-t7hzMQ4PAaL9OfRMuo6yde25Ld4,111220
102
- vercel_cli-48.1.1.dist-info/METADATA,sha256=H32ODyDoyHGysKe_qPz_9_aAl7cYF1JaAmpYphAbLcE,7085
103
- vercel_cli-48.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
104
- vercel_cli-48.1.1.dist-info/entry_points.txt,sha256=3iHkg20gi2BZorK1g5UlyZY3tN5E1vJX6PX5-ibn9fI,83
105
- vercel_cli-48.1.1.dist-info/RECORD,,
102
+ vercel_cli-48.1.6.dist-info/METADATA,sha256=W6tSs7yrQxJ5SxyZVA1Ycp819nMWvfrPqGqoGgFJ9T8,7085
103
+ vercel_cli-48.1.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
104
+ vercel_cli-48.1.6.dist-info/entry_points.txt,sha256=3iHkg20gi2BZorK1g5UlyZY3tN5E1vJX6PX5-ibn9fI,83
105
+ vercel_cli-48.1.6.dist-info/RECORD,,