vercel-cli 47.0.1__py3-none-any.whl → 47.0.5__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.
- vercel_cli/vendor/dist/index.js +17 -5
- vercel_cli/vendor/node_modules/.package-lock.json +3 -3
- vercel_cli/vendor/node_modules/@vercel/build-utils/CHANGELOG.md +6 -0
- vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/run-user-scripts.js +15 -3
- vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.js +15 -3
- vercel_cli/vendor/node_modules/@vercel/build-utils/package.json +1 -1
- vercel_cli/vendor/package.json +3 -3
- {vercel_cli-47.0.1.dist-info → vercel_cli-47.0.5.dist-info}/METADATA +1 -1
- {vercel_cli-47.0.1.dist-info → vercel_cli-47.0.5.dist-info}/RECORD +11 -11
- {vercel_cli-47.0.1.dist-info → vercel_cli-47.0.5.dist-info}/WHEEL +0 -0
- {vercel_cli-47.0.1.dist-info → vercel_cli-47.0.5.dist-info}/entry_points.txt +0 -0
vercel_cli/vendor/dist/index.js
CHANGED
|
@@ -47228,7 +47228,7 @@ var require_package = __commonJS2({
|
|
|
47228
47228
|
"../client/package.json"(exports2, module2) {
|
|
47229
47229
|
module2.exports = {
|
|
47230
47230
|
name: "@vercel/client",
|
|
47231
|
-
version: "16.0.
|
|
47231
|
+
version: "16.0.1",
|
|
47232
47232
|
main: "dist/index.js",
|
|
47233
47233
|
typings: "dist/index.d.ts",
|
|
47234
47234
|
homepage: "https://vercel.com",
|
|
@@ -47267,7 +47267,7 @@ var require_package = __commonJS2({
|
|
|
47267
47267
|
vitest: "2.0.1"
|
|
47268
47268
|
},
|
|
47269
47269
|
dependencies: {
|
|
47270
|
-
"@vercel/build-utils": "12.
|
|
47270
|
+
"@vercel/build-utils": "12.1.0",
|
|
47271
47271
|
"@vercel/error-utils": "2.0.3",
|
|
47272
47272
|
"@vercel/microfrontends": "1.2.2",
|
|
47273
47273
|
"@vercel/routing-utils": "5.1.1",
|
|
@@ -119088,6 +119088,16 @@ var require_detect_builders = __commonJS2({
|
|
|
119088
119088
|
builders.push(...apiBuilders);
|
|
119089
119089
|
}
|
|
119090
119090
|
if (frontendBuilder) {
|
|
119091
|
+
if (frontendBuilder?.use === "@vercel/express") {
|
|
119092
|
+
builders.push({
|
|
119093
|
+
src: "public/**/*",
|
|
119094
|
+
use: "@vercel/static",
|
|
119095
|
+
config: {
|
|
119096
|
+
zeroConfig: true,
|
|
119097
|
+
outputDirectory: "public"
|
|
119098
|
+
}
|
|
119099
|
+
});
|
|
119100
|
+
}
|
|
119091
119101
|
builders.push(frontendBuilder);
|
|
119092
119102
|
if (hasNextApiFiles && apiBuilders.some((b) => (0, import_is_official_runtime.isOfficialRuntime)("node", b.use))) {
|
|
119093
119103
|
warnings.push({
|
|
@@ -126444,15 +126454,17 @@ var require_get_monorepo_default_settings = __commonJS2({
|
|
|
126444
126454
|
})
|
|
126445
126455
|
]);
|
|
126446
126456
|
if (monorepoManager === "turbo") {
|
|
126447
|
-
const [turboJSONBuf, packageJSONBuf] = await Promise.all([
|
|
126457
|
+
const [turboJSONBuf, turboJSONCBuf, packageJSONBuf] = await Promise.all([
|
|
126448
126458
|
detectorFilesystem.readFile("turbo.json").catch(() => null),
|
|
126459
|
+
detectorFilesystem.readFile("turbo.jsonc").catch(() => null),
|
|
126449
126460
|
detectorFilesystem.readFile("package.json").catch(() => null)
|
|
126450
126461
|
]);
|
|
126451
126462
|
let hasBuildPipeline = false;
|
|
126452
126463
|
let hasTurboTasks = false;
|
|
126453
126464
|
let turboSemVer = null;
|
|
126454
|
-
|
|
126455
|
-
|
|
126465
|
+
const turboConfigBuf = turboJSONBuf || turboJSONCBuf;
|
|
126466
|
+
if (turboConfigBuf !== null) {
|
|
126467
|
+
const turboJSON = import_json5.default.parse(turboConfigBuf.toString("utf-8"));
|
|
126456
126468
|
hasTurboTasks = "tasks" in (turboJSON || {});
|
|
126457
126469
|
if (turboJSON?.pipeline?.build || turboJSON?.tasks?.build) {
|
|
126458
126470
|
hasBuildPipeline = true;
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"requires": true,
|
|
4
4
|
"packages": {
|
|
5
5
|
"node_modules/@vercel/build-utils": {
|
|
6
|
-
"version": "12.
|
|
7
|
-
"resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-12.
|
|
8
|
-
"integrity": "sha512-
|
|
6
|
+
"version": "12.1.0",
|
|
7
|
+
"resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-12.1.0.tgz",
|
|
8
|
+
"integrity": "sha512-yqpAh2KHm9iWUXo/aRWiLIxi8dMAwFtse2iZsg2QNEMs9W20va6L8PMFvdAa5MX9pgRwc38gbjD3V7drxSwq4g==",
|
|
9
9
|
"license": "Apache-2.0"
|
|
10
10
|
},
|
|
11
11
|
"node_modules/@vercel/detect-agent": {
|
|
@@ -347,13 +347,25 @@ async function checkTurboSupportsCorepack(turboVersionRange, rootDir) {
|
|
|
347
347
|
return true;
|
|
348
348
|
}
|
|
349
349
|
const turboJsonPath = import_path.default.join(rootDir, "turbo.json");
|
|
350
|
-
const
|
|
350
|
+
const turboJsoncPath = import_path.default.join(rootDir, "turbo.jsonc");
|
|
351
|
+
const [turboJsonExists, turboJsoncExists] = await Promise.all([
|
|
352
|
+
import_fs_extra.default.pathExists(turboJsonPath),
|
|
353
|
+
import_fs_extra.default.pathExists(turboJsoncPath)
|
|
354
|
+
]);
|
|
351
355
|
let turboJson = null;
|
|
356
|
+
let turboConfigPath = null;
|
|
352
357
|
if (turboJsonExists) {
|
|
358
|
+
turboConfigPath = turboJsonPath;
|
|
359
|
+
} else if (turboJsoncExists) {
|
|
360
|
+
turboConfigPath = turboJsoncPath;
|
|
361
|
+
}
|
|
362
|
+
if (turboConfigPath) {
|
|
353
363
|
try {
|
|
354
|
-
turboJson = import_json5.default.parse(await import_fs_extra.default.readFile(
|
|
364
|
+
turboJson = import_json5.default.parse(await import_fs_extra.default.readFile(turboConfigPath, "utf8"));
|
|
355
365
|
} catch (err) {
|
|
356
|
-
console.warn(
|
|
366
|
+
console.warn(
|
|
367
|
+
`WARNING: Failed to parse ${import_path.default.basename(turboConfigPath)}`
|
|
368
|
+
);
|
|
357
369
|
}
|
|
358
370
|
}
|
|
359
371
|
const turboJsonIncludesCorepackHome = turboJson !== null && typeof turboJson === "object" && "globalPassThroughEnv" in turboJson && Array.isArray(turboJson.globalPassThroughEnv) && turboJson.globalPassThroughEnv.includes("COREPACK_HOME");
|
|
@@ -23421,13 +23421,25 @@ async function checkTurboSupportsCorepack(turboVersionRange, rootDir) {
|
|
|
23421
23421
|
return true;
|
|
23422
23422
|
}
|
|
23423
23423
|
const turboJsonPath = import_path5.default.join(rootDir, "turbo.json");
|
|
23424
|
-
const
|
|
23424
|
+
const turboJsoncPath = import_path5.default.join(rootDir, "turbo.jsonc");
|
|
23425
|
+
const [turboJsonExists, turboJsoncExists] = await Promise.all([
|
|
23426
|
+
import_fs_extra7.default.pathExists(turboJsonPath),
|
|
23427
|
+
import_fs_extra7.default.pathExists(turboJsoncPath)
|
|
23428
|
+
]);
|
|
23425
23429
|
let turboJson = null;
|
|
23430
|
+
let turboConfigPath = null;
|
|
23426
23431
|
if (turboJsonExists) {
|
|
23432
|
+
turboConfigPath = turboJsonPath;
|
|
23433
|
+
} else if (turboJsoncExists) {
|
|
23434
|
+
turboConfigPath = turboJsoncPath;
|
|
23435
|
+
}
|
|
23436
|
+
if (turboConfigPath) {
|
|
23427
23437
|
try {
|
|
23428
|
-
turboJson = import_json5.default.parse(await import_fs_extra7.default.readFile(
|
|
23438
|
+
turboJson = import_json5.default.parse(await import_fs_extra7.default.readFile(turboConfigPath, "utf8"));
|
|
23429
23439
|
} catch (err) {
|
|
23430
|
-
console.warn(
|
|
23440
|
+
console.warn(
|
|
23441
|
+
`WARNING: Failed to parse ${import_path5.default.basename(turboConfigPath)}`
|
|
23442
|
+
);
|
|
23431
23443
|
}
|
|
23432
23444
|
}
|
|
23433
23445
|
const turboJsonIncludesCorepackHome = turboJson !== null && typeof turboJson === "object" && "globalPassThroughEnv" in turboJson && Array.isArray(turboJson.globalPassThroughEnv) && turboJson.globalPassThroughEnv.includes("COREPACK_HOME");
|
vercel_cli/vendor/package.json
CHANGED
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
"vercel": "./dist/vc.js"
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@vercel/build-utils": "12.
|
|
7
|
+
"@vercel/build-utils": "12.1.0",
|
|
8
8
|
"@vercel/detect-agent": "0.2.0",
|
|
9
9
|
"@vercel/python": "5.0.0"
|
|
10
10
|
},
|
|
11
11
|
"description": "The command-line interface for Vercel",
|
|
12
12
|
"engines": {
|
|
13
|
-
"node": ">=
|
|
13
|
+
"node": ">= 18"
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
16
|
"dist"
|
|
@@ -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": "47.0.
|
|
40
|
+
"version": "47.0.5"
|
|
41
41
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: vercel-cli
|
|
3
|
-
Version: 47.0.
|
|
3
|
+
Version: 47.0.5
|
|
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=
|
|
3
|
+
vercel_cli/vendor/package.json,sha256=9QxA9iw_YaMTayR4bon5Pex2cZCcMi4pT7kxB-V-X-o,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=
|
|
7
|
+
vercel_cli/vendor/dist/index.js,sha256=4A8YRPxm1J4AYZg4wc126krw7Md7XAiBxFHgxJ5KVn4,8852679
|
|
8
8
|
vercel_cli/vendor/dist/vc.js,sha256=AAC4u6uwjpO0KfFVuLRs5YWXjW4aMCkgSj_45hR3W8k,340
|
|
9
|
-
vercel_cli/vendor/node_modules/.package-lock.json,sha256=
|
|
10
|
-
vercel_cli/vendor/node_modules/@vercel/build-utils/CHANGELOG.md,sha256=
|
|
9
|
+
vercel_cli/vendor/node_modules/.package-lock.json,sha256=WW2AxnyFnHx0CyUeIx_d85tcf1RqMlg6zpQ0Fgan8fY,1002
|
|
10
|
+
vercel_cli/vendor/node_modules/@vercel/build-utils/CHANGELOG.md,sha256=ji-V7NgIUH1Fj-lmUh0LmIxhS6bq_0TW7xFH0e9yiF8,18051
|
|
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=
|
|
17
|
+
vercel_cli/vendor/node_modules/@vercel/build-utils/package.json,sha256=UmbDLRiKty0wNK0E9c-zaywQu66nkGjNDXThiCfqSe0,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
|
|
@@ -42,7 +42,7 @@ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-prefixed-env-vars.js
|
|
|
42
42
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/hard-link-dir.d.ts,sha256=HplXUbwTLeD9eY-mSorms1O1mucLWBH-edAPIvAiYSM,85
|
|
43
43
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/hard-link-dir.js,sha256=K4utFK-gzVTfepi8P488t4cFBHBA8virdMyFumvu8E8,3685
|
|
44
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=
|
|
45
|
+
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.js,sha256=UbM6vfZh057tLivysvvJh-ZEAw7waI3LXW-ueRy6lrw,1130390
|
|
46
46
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/lambda.d.ts,sha256=wpPR6WTT3dvm0RBJ0KqaPW9ATmHMav4_uFvAnuxeWQQ,4746
|
|
47
47
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/lambda.js,sha256=MZS-MK-rCX6B5FPUiecss3a5wqSbSm--6mMp6Pu-Tu4,11598
|
|
48
48
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/nodejs-lambda.d.ts,sha256=LwC890Vt5ilvPpMhqRt8X0eOycQHa_vAsCeBf3KoKik,595
|
|
@@ -74,7 +74,7 @@ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/read-config-file.js,s
|
|
|
74
74
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/rename.d.ts,sha256=v6WioV6U1QxczX6tOCZbSjXjeCN2ouyK2bujhvvPJTI,378
|
|
75
75
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/rename.js,sha256=55SeRvSvb6gVVlLRNlFA0WaMVHikvBdMI9YRUxDn2yU,1094
|
|
76
76
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/run-user-scripts.d.ts,sha256=sC9LgBU_TbYTaBQyrNM0TMSFgjRuKcfx7tJMoKa2FIc,8698
|
|
77
|
-
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/run-user-scripts.js,sha256=
|
|
77
|
+
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/run-user-scripts.js,sha256=b_NKixXsJ6aOYKA2pNFizjuK4zzbWG551pWNI-ao2hQ,38028
|
|
78
78
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/stream-to-buffer.d.ts,sha256=ARoCtv0o8IIUW0myrosVJhv6d_odcaJUisA2LDHZSKM,235
|
|
79
79
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/stream-to-buffer.js,sha256=R4Z_RpbNJKFvoVX5AvyWzoVoJqrQaSz4CZSSFJV6vVQ,3158
|
|
80
80
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/trace/constants.d.ts,sha256=Z0MsKjgTcB8igokDmq1MxRJpCIGCEUgFXQId2yGiahM,132
|
|
@@ -97,7 +97,7 @@ vercel_cli/vendor/node_modules/@vercel/python/LICENSE,sha256=sHDXe_ssUqHdaZbeDOX
|
|
|
97
97
|
vercel_cli/vendor/node_modules/@vercel/python/package.json,sha256=tIyyNkdzUM3UhxWNM9JNiKyPnwCXLSx3nYKMQq24UTw,1044
|
|
98
98
|
vercel_cli/vendor/node_modules/@vercel/python/vc_init.py,sha256=lNNCD5t4cXG6Xc0_HQvnCUblXrp47VZIC3fFiHi2_hE,27477
|
|
99
99
|
vercel_cli/vendor/node_modules/@vercel/python/dist/index.js,sha256=0cjK0Hujjgpb4dwryWKVbf1s6q_wfDi1TOQYn8UYtLw,102883
|
|
100
|
-
vercel_cli-47.0.
|
|
101
|
-
vercel_cli-47.0.
|
|
102
|
-
vercel_cli-47.0.
|
|
103
|
-
vercel_cli-47.0.
|
|
100
|
+
vercel_cli-47.0.5.dist-info/METADATA,sha256=mCNbSXXCMvxethV_QQJiPixvimeA0ZvcF9gj2RpbhHQ,7085
|
|
101
|
+
vercel_cli-47.0.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
102
|
+
vercel_cli-47.0.5.dist-info/entry_points.txt,sha256=3iHkg20gi2BZorK1g5UlyZY3tN5E1vJX6PX5-ibn9fI,83
|
|
103
|
+
vercel_cli-47.0.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|