vercel-cli 48.6.6__py3-none-any.whl → 48.6.7__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 +2 -2
- 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/node-version.js +11 -1
- vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.js +10 -0
- vercel_cli/vendor/node_modules/@vercel/build-utils/package.json +1 -1
- vercel_cli/vendor/package.json +2 -2
- {vercel_cli-48.6.6.dist-info → vercel_cli-48.6.7.dist-info}/METADATA +1 -1
- {vercel_cli-48.6.6.dist-info → vercel_cli-48.6.7.dist-info}/RECORD +11 -11
- {vercel_cli-48.6.6.dist-info → vercel_cli-48.6.7.dist-info}/WHEEL +0 -0
- {vercel_cli-48.6.6.dist-info → vercel_cli-48.6.7.dist-info}/entry_points.txt +0 -0
vercel_cli/vendor/dist/index.js
CHANGED
|
@@ -49550,7 +49550,7 @@ var require_package = __commonJS2({
|
|
|
49550
49550
|
"../client/package.json"(exports2, module2) {
|
|
49551
49551
|
module2.exports = {
|
|
49552
49552
|
name: "@vercel/client",
|
|
49553
|
-
version: "17.1.
|
|
49553
|
+
version: "17.1.3",
|
|
49554
49554
|
main: "dist/index.js",
|
|
49555
49555
|
typings: "dist/index.d.ts",
|
|
49556
49556
|
homepage: "https://vercel.com",
|
|
@@ -49589,7 +49589,7 @@ var require_package = __commonJS2({
|
|
|
49589
49589
|
vitest: "2.0.1"
|
|
49590
49590
|
},
|
|
49591
49591
|
dependencies: {
|
|
49592
|
-
"@vercel/build-utils": "12.2.
|
|
49592
|
+
"@vercel/build-utils": "12.2.2",
|
|
49593
49593
|
"@vercel/error-utils": "2.0.3",
|
|
49594
49594
|
"@vercel/microfrontends": "1.2.2",
|
|
49595
49595
|
"@vercel/routing-utils": "5.2.1",
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"requires": true,
|
|
4
4
|
"packages": {
|
|
5
5
|
"node_modules/@vercel/build-utils": {
|
|
6
|
-
"version": "12.2.
|
|
7
|
-
"resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-12.2.
|
|
8
|
-
"integrity": "sha512-
|
|
6
|
+
"version": "12.2.2",
|
|
7
|
+
"resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-12.2.2.tgz",
|
|
8
|
+
"integrity": "sha512-6AQL0YT6la3/j9xh4vyYfyEKbRQ8asikAX1EWasiZqhRcFSstM4zbqkez5B+SpDK8y+Kh7yz9sz/dkBTW4Xtqg==",
|
|
9
9
|
"license": "Apache-2.0"
|
|
10
10
|
},
|
|
11
11
|
"node_modules/@vercel/detect-agent": {
|
|
@@ -100,9 +100,19 @@ const BUN_VERSIONS = [
|
|
|
100
100
|
})
|
|
101
101
|
];
|
|
102
102
|
function getNodeVersionByMajor(major) {
|
|
103
|
-
return
|
|
103
|
+
return getOptions().find((v) => v.major === major);
|
|
104
104
|
}
|
|
105
105
|
function getOptions() {
|
|
106
|
+
if (process.env.VERCEL_ALLOW_NODEJS_24 === "1") {
|
|
107
|
+
return [
|
|
108
|
+
new import_types.NodeVersion({
|
|
109
|
+
major: 24,
|
|
110
|
+
range: "24.x",
|
|
111
|
+
runtime: "nodejs24.x"
|
|
112
|
+
}),
|
|
113
|
+
...NODE_VERSIONS
|
|
114
|
+
];
|
|
115
|
+
}
|
|
106
116
|
return NODE_VERSIONS;
|
|
107
117
|
}
|
|
108
118
|
function isNodeVersionAvailable(version) {
|
|
@@ -23015,6 +23015,16 @@ var BUN_VERSIONS = [
|
|
|
23015
23015
|
})
|
|
23016
23016
|
];
|
|
23017
23017
|
function getOptions() {
|
|
23018
|
+
if (process.env.VERCEL_ALLOW_NODEJS_24 === "1") {
|
|
23019
|
+
return [
|
|
23020
|
+
new NodeVersion({
|
|
23021
|
+
major: 24,
|
|
23022
|
+
range: "24.x",
|
|
23023
|
+
runtime: "nodejs24.x"
|
|
23024
|
+
}),
|
|
23025
|
+
...NODE_VERSIONS
|
|
23026
|
+
];
|
|
23027
|
+
}
|
|
23018
23028
|
return NODE_VERSIONS;
|
|
23019
23029
|
}
|
|
23020
23030
|
function isNodeVersionAvailable(version) {
|
vercel_cli/vendor/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"vercel": "./dist/vc.js"
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@vercel/build-utils": "12.2.
|
|
7
|
+
"@vercel/build-utils": "12.2.2",
|
|
8
8
|
"@vercel/detect-agent": "1.0.0",
|
|
9
9
|
"@vercel/python": "5.0.10"
|
|
10
10
|
},
|
|
@@ -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.6.
|
|
40
|
+
"version": "48.6.7"
|
|
41
41
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: vercel-cli
|
|
3
|
-
Version: 48.6.
|
|
3
|
+
Version: 48.6.7
|
|
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=DyfJwLTw9jBG6-dPZY5BtdGuXgDsKpXjGdUSs20-jB8,1271
|
|
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=WohvsB6t-Hac9MFh1S2olWU8IjFSjepfS5hvJywIrx8,8925167
|
|
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=bG67j9GNs3Y-Y9TYDdY9ABwmA3kuWaXnvFciu_-jsL4,1055
|
|
10
|
+
vercel_cli/vendor/node_modules/@vercel/build-utils/CHANGELOG.md,sha256=RuZIlJwvfLtyeiZF5qnkeL7T0U2Pfz8nkxcdFHmTlfA,18840
|
|
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=jMx3-EwU8ZCP5PxfOu3SWB48fOL7AkBygRw01GulCcc,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
|
|
@@ -46,7 +46,7 @@ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-prefixed-env-vars.js
|
|
|
46
46
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/hard-link-dir.d.ts,sha256=HplXUbwTLeD9eY-mSorms1O1mucLWBH-edAPIvAiYSM,85
|
|
47
47
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/hard-link-dir.js,sha256=K4utFK-gzVTfepi8P488t4cFBHBA8virdMyFumvu8E8,3685
|
|
48
48
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.d.ts,sha256=uhPAgdJem38X_WAjhOp_nMSTjcq-1JltuFiCxuyVT7g,3159
|
|
49
|
-
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.js,sha256=
|
|
49
|
+
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.js,sha256=YcYAqLtFMZpU0ri8DMLzu8nPnPQ0ueIaB9bU0M0TnCI,1138326
|
|
50
50
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/lambda.d.ts,sha256=wpPR6WTT3dvm0RBJ0KqaPW9ATmHMav4_uFvAnuxeWQQ,4746
|
|
51
51
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/lambda.js,sha256=MZS-MK-rCX6B5FPUiecss3a5wqSbSm--6mMp6Pu-Tu4,11598
|
|
52
52
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/nodejs-lambda.d.ts,sha256=LwC890Vt5ilvPpMhqRt8X0eOycQHa_vAsCeBf3KoKik,595
|
|
@@ -70,7 +70,7 @@ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/get-writable-director
|
|
|
70
70
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/glob.d.ts,sha256=wEBK0FOg-tOiWcp-QZLtA2r5bRbibV-Ic75A5qg2bFk,364
|
|
71
71
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/glob.js,sha256=SRM_-ufdBHgeqJaW_nBwujRjmfjLsxbHFho5k5tO1bY,4519
|
|
72
72
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/node-version.d.ts,sha256=_VdEAqvrWqkBmCkv75b_0nHcDJ9kJZ9xMQINXggufBk,933
|
|
73
|
-
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/node-version.js,sha256
|
|
73
|
+
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/node-version.js,sha256=txMFCsuu6Mj6Ty9IftiQU2VqK5F9EfbPS0Os3V3Fp68,7497
|
|
74
74
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/normalize-path.d.ts,sha256=pMZyTNN1scwUc7cBCWEk8-lwxI5KIjazfNLqkInqVrg,116
|
|
75
75
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/normalize-path.js,sha256=mdFXSxNkmBBpEs5szUMVt7yVFcnTANXt84_BnyNqpBI,1188
|
|
76
76
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/read-config-file.d.ts,sha256=KO7AYZGrouVIOwaCYyOoqyVd6e7UFrZa9yWqsoHqU4Y,88
|
|
@@ -105,7 +105,7 @@ vercel_cli/vendor/node_modules/@vercel/python/vc_init.py,sha256=A7949hQi18B9yqPk
|
|
|
105
105
|
vercel_cli/vendor/node_modules/@vercel/python/vc_init_dev_asgi.py,sha256=pV9s5Jz4AS_JswthCOP3L6SPWVgk_2kRD1REgA9GKIQ,3078
|
|
106
106
|
vercel_cli/vendor/node_modules/@vercel/python/vc_init_dev_wsgi.py,sha256=pnNGrPJtPF9OdioaiIdD_OgA3qdio4HqGmKaenogtAk,4078
|
|
107
107
|
vercel_cli/vendor/node_modules/@vercel/python/dist/index.js,sha256=fAumiV0j6qLydhmE1mcuKhUarPee09cOpcOlwrUOz_0,136129
|
|
108
|
-
vercel_cli-48.6.
|
|
109
|
-
vercel_cli-48.6.
|
|
110
|
-
vercel_cli-48.6.
|
|
111
|
-
vercel_cli-48.6.
|
|
108
|
+
vercel_cli-48.6.7.dist-info/METADATA,sha256=beXsN1IsJyLqfs5RepFOgRFL-oFGXTtWV17u5bPdQZk,7085
|
|
109
|
+
vercel_cli-48.6.7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
110
|
+
vercel_cli-48.6.7.dist-info/entry_points.txt,sha256=3iHkg20gi2BZorK1g5UlyZY3tN5E1vJX6PX5-ibn9fI,83
|
|
111
|
+
vercel_cli-48.6.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|