vercel-cli 48.2.2__py3-none-any.whl → 48.2.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.

@@ -167,7 +167,12 @@ export interface ShouldServeOptions {
167
167
  /**
168
168
  * `startDevServer()` is given the same parameters as `build()`.
169
169
  */
170
- export type StartDevServerOptions = BuildOptions;
170
+ export type StartDevServerOptions = BuildOptions & {
171
+ /**
172
+ * Directory to serve static files from in dev mode
173
+ */
174
+ publicDir?: string;
175
+ };
171
176
  export interface StartDevServerSuccess {
172
177
  /**
173
178
  * Port number where the dev server can be connected to, assumed to be running
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/build-utils",
3
- "version": "12.1.0",
3
+ "version": "12.1.2",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",
@@ -27,7 +27,7 @@
27
27
  "@types/semver": "6.0.0",
28
28
  "@types/yazl": "2.4.2",
29
29
  "@vercel/error-utils": "2.0.3",
30
- "@vercel/routing-utils": "5.1.1",
30
+ "@vercel/routing-utils": "5.2.0",
31
31
  "aggregate-error": "3.0.1",
32
32
  "async-retry": "1.2.3",
33
33
  "async-sema": "2.1.4",
@@ -3224,6 +3224,47 @@ function isFastapiEntrypoint(file) {
3224
3224
  return false;
3225
3225
  }
3226
3226
  }
3227
+ var FLASK_ENTRYPOINT_FILENAMES = ["app", "index", "server", "main"];
3228
+ var FLASK_ENTRYPOINT_DIRS = ["", "src", "app"];
3229
+ var FLASK_CONTENT_REGEX = /(from\s+flask\s+import\s+Flask|import\s+flask|Flask\s*\()/;
3230
+ var FLASK_CANDIDATE_ENTRYPOINTS = FLASK_ENTRYPOINT_FILENAMES.flatMap(
3231
+ (filename) => FLASK_ENTRYPOINT_DIRS.map(
3232
+ (dir) => import_path2.posix.join(dir, `${filename}.py`)
3233
+ )
3234
+ );
3235
+ function isFlaskEntrypoint(file) {
3236
+ try {
3237
+ const fsPath = file.fsPath;
3238
+ if (!fsPath)
3239
+ return false;
3240
+ const contents = import_fs2.default.readFileSync(fsPath, "utf8");
3241
+ return FLASK_CONTENT_REGEX.test(contents);
3242
+ } catch {
3243
+ return false;
3244
+ }
3245
+ }
3246
+ async function detectFlaskEntrypoint(workPath, configuredEntrypoint) {
3247
+ const entry = configuredEntrypoint.endsWith(".py") ? configuredEntrypoint : `${configuredEntrypoint}.py`;
3248
+ try {
3249
+ const fsFiles = await (0, import_build_utils3.glob)("**", workPath);
3250
+ if (fsFiles[entry])
3251
+ return entry;
3252
+ const candidates = FLASK_CANDIDATE_ENTRYPOINTS.filter(
3253
+ (c) => !!fsFiles[c]
3254
+ );
3255
+ if (candidates.length > 0) {
3256
+ const flaskEntrypoint = candidates.find(
3257
+ (c) => isFlaskEntrypoint(fsFiles[c])
3258
+ ) || candidates[0];
3259
+ (0, import_build_utils3.debug)(`Detected Flask entrypoint: ${flaskEntrypoint}`);
3260
+ return flaskEntrypoint;
3261
+ }
3262
+ return null;
3263
+ } catch {
3264
+ (0, import_build_utils3.debug)("Failed to discover entrypoint for Flask");
3265
+ return null;
3266
+ }
3267
+ }
3227
3268
  async function detectFastapiEntrypoint(workPath, configuredEntrypoint) {
3228
3269
  const entry = configuredEntrypoint.endsWith(".py") ? configuredEntrypoint : `${configuredEntrypoint}.py`;
3229
3270
  try {
@@ -3645,6 +3686,20 @@ var build = async ({
3645
3686
  message: `No FastAPI entrypoint found. Searched for: ${searchedList}`
3646
3687
  });
3647
3688
  }
3689
+ } else if (!fsFiles[entrypoint] && config?.framework === "flask") {
3690
+ const detected = await detectFlaskEntrypoint(workPath, entrypoint);
3691
+ if (detected) {
3692
+ (0, import_build_utils5.debug)(
3693
+ `Resolved Python entrypoint to "${detected}" (configured "${entrypoint}" not found).`
3694
+ );
3695
+ entrypoint = detected;
3696
+ } else {
3697
+ const searchedList = FLASK_CANDIDATE_ENTRYPOINTS.join(", ");
3698
+ throw new import_build_utils5.NowBuildError({
3699
+ code: "FLASK_ENTRYPOINT_NOT_FOUND",
3700
+ message: `No Flask entrypoint found. Searched for: ${searchedList}`
3701
+ });
3702
+ }
3648
3703
  }
3649
3704
  const entryDirectory = (0, import_path5.dirname)(entrypoint);
3650
3705
  const hasReqLocal = !!fsFiles[(0, import_path5.join)(entryDirectory, "requirements.txt")];
@@ -3915,6 +3970,12 @@ var shouldServe = (opts) => {
3915
3970
  return false;
3916
3971
  }
3917
3972
  return true;
3973
+ } else if (framework === "flask") {
3974
+ const requestPath = opts.requestPath.replace(/\/$/, "");
3975
+ if (requestPath.startsWith("api") && opts.hasMatched) {
3976
+ return false;
3977
+ }
3978
+ return true;
3918
3979
  }
3919
3980
  return defaultShouldServe(opts);
3920
3981
  };
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/python",
3
- "version": "5.0.7",
3
+ "version": "5.0.8",
4
4
  "main": "./dist/index.js",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://vercel.com/docs/runtimes#official-runtimes/python",
@@ -20,7 +20,7 @@
20
20
  "@types/jest": "27.4.1",
21
21
  "@types/node": "14.18.33",
22
22
  "@types/which": "3.0.0",
23
- "@vercel/build-utils": "12.1.0",
23
+ "@vercel/build-utils": "12.1.2",
24
24
  "cross-env": "7.0.3",
25
25
  "execa": "^1.0.0",
26
26
  "fs-extra": "11.1.1",
@@ -434,6 +434,8 @@ if 'VERCEL_IPC_PATH' in os.environ:
434
434
 
435
435
  # Event to signal that the response has been fully sent
436
436
  response_done = threading.Event()
437
+ # Event to signal the ASGI app has fully completed (incl. background tasks)
438
+ app_done = threading.Event()
437
439
 
438
440
  # Propagate request context to background thread for logging & metrics
439
441
  request_context = storage.get()
@@ -488,6 +490,8 @@ if 'VERCEL_IPC_PATH' in os.environ:
488
490
  # Run ASGI app (includes background tasks)
489
491
  asgi_instance = app(scope, receive, send)
490
492
  await asgi_instance
493
+ # Mark app completion when the ASGI callable returns
494
+ app_done.set()
491
495
 
492
496
  asyncio.run(runner())
493
497
  except Exception:
@@ -504,10 +508,9 @@ if 'VERCEL_IPC_PATH' in os.environ:
504
508
  pass
505
509
  finally:
506
510
  # Always unblock the waiting thread to avoid hangs
507
- try:
508
- response_done.set()
509
- except Exception:
510
- pass
511
+ response_done.set()
512
+ # Ensure app completion is always signaled
513
+ app_done.set()
511
514
  if token is not None:
512
515
  storage.reset(token)
513
516
 
@@ -517,6 +520,8 @@ if 'VERCEL_IPC_PATH' in os.environ:
517
520
 
518
521
  # Wait until final body chunk has been flushed to client
519
522
  response_done.wait()
523
+ # Also wait until the ASGI app finishes (includes background tasks)
524
+ app_done.wait()
520
525
 
521
526
  if 'Handler' in locals():
522
527
  server = ThreadingHTTPServer(('127.0.0.1', 0), Handler)
@@ -4,9 +4,9 @@
4
4
  "vercel": "./dist/vc.js"
5
5
  },
6
6
  "dependencies": {
7
- "@vercel/build-utils": "12.1.0",
7
+ "@vercel/build-utils": "12.1.2",
8
8
  "@vercel/detect-agent": "1.0.0",
9
- "@vercel/python": "5.0.7"
9
+ "@vercel/python": "5.0.8"
10
10
  },
11
11
  "description": "The command-line interface for Vercel",
12
12
  "engines": {
@@ -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.2.2"
40
+ "version": "48.2.6"
41
41
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vercel-cli
3
- Version: 48.2.2
3
+ Version: 48.2.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,20 +1,20 @@
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=vuIKN6QCvMRexqR2UR_YC_boWUuYD1sU0EoI7DSOjDo,1261
3
+ vercel_cli/vendor/package.json,sha256=I2gxAv5uU1HIcIhL6_WVgGh8AlrNpXsX3ctAzqS1rTQ,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=79jte8Hhn8DxD8HHeLEK02GNO0UANrbl4g-y8o9z1Iw,8886443
7
+ vercel_cli/vendor/dist/index.js,sha256=vBrULu0oS-ZDAGCgvF0zSXFh00bJNPE_2rIq40Y1FXg,8888054
8
8
  vercel_cli/vendor/dist/vc.js,sha256=AAC4u6uwjpO0KfFVuLRs5YWXjW4aMCkgSj_45hR3W8k,340
9
- vercel_cli/vendor/node_modules/.package-lock.json,sha256=_DqzYpnimWakg9e432aPgSIlszgYFU7j-gA7lPm13xU,1053
10
- vercel_cli/vendor/node_modules/@vercel/build-utils/CHANGELOG.md,sha256=ji-V7NgIUH1Fj-lmUh0LmIxhS6bq_0TW7xFH0e9yiF8,18051
9
+ vercel_cli/vendor/node_modules/.package-lock.json,sha256=YaPx19MQ459GGAdFjpnfYKQ9ugDwnmtwq4h7Bngh0pw,1053
10
+ vercel_cli/vendor/node_modules/@vercel/build-utils/CHANGELOG.md,sha256=mAeB5IFGBmL1DnbIKTZ-qBC-OYcey_JVXANK4jrmQeM,18305
11
11
  vercel_cli/vendor/node_modules/@vercel/build-utils/LICENSE,sha256=sHDXe_ssUqHdaZbeDOX2TEmgylXIibFjqWPd9csAHuI,11343
12
12
  vercel_cli/vendor/node_modules/@vercel/build-utils/build.mjs,sha256=UCAJgPaur_bxtLTnQxSkBwoq246SSCBvI-0w_PvbAVU,132
13
13
  vercel_cli/vendor/node_modules/@vercel/build-utils/file-blob.js,sha256=aRpphtlekNrjt2il5QT0F2bXAkqFTO_V1krxIOq4hrI,51
14
14
  vercel_cli/vendor/node_modules/@vercel/build-utils/file-fs-ref.js,sha256=fOL25R1bIwSeLf_imxHGMUUhjRLF_BE1_Zu7id4zQHQ,52
15
15
  vercel_cli/vendor/node_modules/@vercel/build-utils/file-ref.js,sha256=Zagnve_F2XviRbTHabnkueLyODg4bS0YrNSqd3nfIl8,50
16
16
  vercel_cli/vendor/node_modules/@vercel/build-utils/lambda.js,sha256=KAiW9B7zt1YNj6DpnUErjD8pZJUq7MP1xCTG8oFzCKU,42
17
- vercel_cli/vendor/node_modules/@vercel/build-utils/package.json,sha256=UmbDLRiKty0wNK0E9c-zaywQu66nkGjNDXThiCfqSe0,1847
17
+ vercel_cli/vendor/node_modules/@vercel/build-utils/package.json,sha256=5EmCI6p2QvUO9isxMl99k07ONsZcJ7u3Qz9WGcz6NWw,1847
18
18
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/clone-env.d.ts,sha256=j_d2xvRDDMBB4yXz53kyZ-plZRvg0Rg1d9-lFFvjVRo,415
19
19
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/clone-env.js,sha256=LzFB8CsnB1G7wZ2pl5D25siWq0kuY2eTvRlZMj6tbg0,1423
20
20
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/debug.d.ts,sha256=zh9K0T0QHcac03_UpCv9r4q3w8aia11XqtWd7Jsfhos,76
@@ -31,6 +31,8 @@ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-fs-ref.d.ts,sha256=
31
31
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-fs-ref.js,sha256=AXyXrTwRJTeqLOBhWGKm_KMkAiMxjOJpQlrW4lFotiU,3910
32
32
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-ref.d.ts,sha256=TavWfLrgq6soixSDYhdsvt8MtzIB_qLJPcbo02pm_Ts,1098
33
33
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-ref.js,sha256=7rTV64WuFTvLurFsNE8JWCC4Y7EFFgiqwtCAe9Co3CU,4929
34
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/generate-node-builder-functions.d.ts,sha256=Qb_-JRWbd1gWWZBjNCRbXGzKneYF9QLQufU4IW0o2g8,509
35
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/generate-node-builder-functions.js,sha256=DhEN1dmoC8xRb3BMVefBCEpOZ6yhZrmdqvRcUFhWCB4,7550
34
36
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-ignore-filter.d.ts,sha256=Rr_2-k8x2nv7naAZFeV-vDiMjOiyQRn3ldqdSeh3jaE,113
35
37
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-ignore-filter.js,sha256=uIdQ39MfWu0kW2jg6gZ-P912KxC7ztTaCbkDMVw-v3A,3328
36
38
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-installed-package-version.d.ts,sha256=RgC8V4BC4wAsIjWmLyPvosiKlCysAg9jWlZljXzyrQM,128
@@ -41,8 +43,8 @@ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-prefixed-env-vars.d.
41
43
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-prefixed-env-vars.js,sha256=6rhb9L9lDw-oGmJk-CKgpZxgCzBWy2yBUxW6uD_fDMU,1827
42
44
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/hard-link-dir.d.ts,sha256=HplXUbwTLeD9eY-mSorms1O1mucLWBH-edAPIvAiYSM,85
43
45
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/hard-link-dir.js,sha256=K4utFK-gzVTfepi8P488t4cFBHBA8virdMyFumvu8E8,3685
44
- vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.d.ts,sha256=tIQglSVzYMR645Bo2Hy2tRjz_F2699Zu3kHVyPA77YE,2842
45
- vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.js,sha256=UbM6vfZh057tLivysvvJh-ZEAw7waI3LXW-ueRy6lrw,1130390
46
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.d.ts,sha256=7H6JjqvY8N90MfHff-rb8zHbsNxWGfvKxUk3TZns8xU,2924
47
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.js,sha256=lJPN4QeqAOmxclSKlhuzHdZ4huYT_VHIrrKQstcLzTM,1136195
46
48
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/lambda.d.ts,sha256=wpPR6WTT3dvm0RBJ0KqaPW9ATmHMav4_uFvAnuxeWQQ,4746
47
49
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/lambda.js,sha256=MZS-MK-rCX6B5FPUiecss3a5wqSbSm--6mMp6Pu-Tu4,11598
48
50
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/nodejs-lambda.d.ts,sha256=LwC890Vt5ilvPpMhqRt8X0eOycQHa_vAsCeBf3KoKik,595
@@ -55,7 +57,7 @@ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/schemas.d.ts,sha256=cmMr
55
57
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/schemas.js,sha256=VjKaaJ48LyK_49jT5Om7d4_OvF0BG3tT_CW345-7lgc,3032
56
58
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/should-serve.d.ts,sha256=rYxmRjKfduI6QBQe8jOcOW97NkVvIsjbYmXj5Em5Hcg,91
57
59
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/should-serve.js,sha256=1M_tNAXPzxG6HnzqHtiIEy3oy65NMSBAKVQQ5215XJU,1599
58
- vercel_cli/vendor/node_modules/@vercel/build-utils/dist/types.d.ts,sha256=pncS6HlzC-UYvXmA0edpHKjceL5eChlj6Ksv5zYPgaU,16054
60
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/types.d.ts,sha256=mrdWV95dorA5a4MyVnLrr99liY688AOXTu5Oit0--c0,16156
59
61
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/types.js,sha256=TvYaM5sNbX2hfy_eUrIz4JWgIpMPrTi_jcqHZDvP-kg,1678
60
62
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/validate-npmrc.d.ts,sha256=YxDG9YaXL8YMWe-UBrtmVS_aKzZsDlSc6AxWN_OeMB8,527
61
63
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/validate-npmrc.js,sha256=ZZSYts47i3Gu4FReelJVy_jNbeV-tx2Ii2AWJvwrPBI,1593
@@ -76,7 +78,7 @@ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/rename.js,sha256=55Se
76
78
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/run-user-scripts.d.ts,sha256=sC9LgBU_TbYTaBQyrNM0TMSFgjRuKcfx7tJMoKa2FIc,8698
77
79
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/run-user-scripts.js,sha256=b_NKixXsJ6aOYKA2pNFizjuK4zzbWG551pWNI-ao2hQ,38028
78
80
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/stream-to-buffer.d.ts,sha256=ARoCtv0o8IIUW0myrosVJhv6d_odcaJUisA2LDHZSKM,235
79
- vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/stream-to-buffer.js,sha256=R4Z_RpbNJKFvoVX5AvyWzoVoJqrQaSz4CZSSFJV6vVQ,3158
81
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/stream-to-buffer.js,sha256=NhuoFuPDPtu46Y_DBkGrtOjSKBeolHeMTTjFbd5us4w,3157
80
82
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/trace/constants.d.ts,sha256=Z0MsKjgTcB8igokDmq1MxRJpCIGCEUgFXQId2yGiahM,132
81
83
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/trace/constants.js,sha256=f9Na7Jnoz0Hj5IUOb3zt--AlcITUxZnmnBMyxzW8vKM,1260
82
84
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/trace/index.d.ts,sha256=SaKVw0vlduNq9PHA9lk9mRTQEhmQHdA6hqzS69Ryrzs,169
@@ -96,11 +98,11 @@ vercel_cli/vendor/node_modules/@vercel/detect-agent/package.json,sha256=skFFT-Up
96
98
  vercel_cli/vendor/node_modules/@vercel/detect-agent/dist/index.d.ts,sha256=3HzKZBBpy_L_9ZFprqKrWHCTmazGlzGoqvx6MRABkjg,901
97
99
  vercel_cli/vendor/node_modules/@vercel/detect-agent/dist/index.js,sha256=likIDfr0UHioDUkMLymGQoCfoOhDvj0c3mP2VyP9StA,2510
98
100
  vercel_cli/vendor/node_modules/@vercel/python/LICENSE,sha256=sHDXe_ssUqHdaZbeDOX2TEmgylXIibFjqWPd9csAHuI,11343
99
- vercel_cli/vendor/node_modules/@vercel/python/package.json,sha256=RQeQsg7ciIgCPlMCuVDUSJEyLtE3lkWGoN0z7SObRF0,1071
100
- vercel_cli/vendor/node_modules/@vercel/python/vc_init.py,sha256=x7UOYRAiJPGJfxNHa3Y0Fap0bogL7sW2z5O16Pcs4o8,33546
101
+ vercel_cli/vendor/node_modules/@vercel/python/package.json,sha256=PglnL_VPZLazgPj8vRN0cu6vsW5p5BneTaSHnG8Yjqc,1071
102
+ vercel_cli/vendor/node_modules/@vercel/python/vc_init.py,sha256=QXEjt8G8Y5foixJb0XalfBuXUl4xyy3UBR83PmCUfec,33941
101
103
  vercel_cli/vendor/node_modules/@vercel/python/vc_init_dev_asgi.py,sha256=SUGPA8qw6b6ttNooj8BVohZRVd7QD6Qx_wV_GjX0kuM,1880
102
- vercel_cli/vendor/node_modules/@vercel/python/dist/index.js,sha256=Vci6RpbBlOae-UCCwULtP-KCkfyrFi4h6LK7Vtm1n_8,130671
103
- vercel_cli-48.2.2.dist-info/METADATA,sha256=ozCR8Gg0M3oEw2LAIEIS5tMkvL4DYUv1qLuMp1KpJtw,7085
104
- vercel_cli-48.2.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
105
- vercel_cli-48.2.2.dist-info/entry_points.txt,sha256=3iHkg20gi2BZorK1g5UlyZY3tN5E1vJX6PX5-ibn9fI,83
106
- vercel_cli-48.2.2.dist-info/RECORD,,
104
+ vercel_cli/vendor/node_modules/@vercel/python/dist/index.js,sha256=ch1iZisotKIY2Cgvgqx-4_5epit27hmdAO701t9xofs,132923
105
+ vercel_cli-48.2.6.dist-info/METADATA,sha256=VPDB90-dHXOmb-vHbuAJI_HC5PwhshuGQQGuMxAWEtc,7085
106
+ vercel_cli-48.2.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
107
+ vercel_cli-48.2.6.dist-info/entry_points.txt,sha256=3iHkg20gi2BZorK1g5UlyZY3tN5E1vJX6PX5-ibn9fI,83
108
+ vercel_cli-48.2.6.dist-info/RECORD,,