vercel-cli 48.6.7__py3-none-any.whl → 48.8.0__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 +1563 -848
- vercel_cli/vendor/node_modules/.package-lock.json +6 -6
- vercel_cli/vendor/node_modules/@vercel/build-utils/CHANGELOG.md +6 -0
- vercel_cli/vendor/node_modules/@vercel/build-utils/dist/framework-helpers.d.ts +1 -1
- vercel_cli/vendor/node_modules/@vercel/build-utils/dist/framework-helpers.js +2 -1
- vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.js +2 -1
- vercel_cli/vendor/node_modules/@vercel/build-utils/package.json +1 -1
- vercel_cli/vendor/node_modules/@vercel/python/dist/index.js +2 -2
- vercel_cli/vendor/node_modules/@vercel/python/package.json +2 -2
- vercel_cli/vendor/package.json +4 -4
- {vercel_cli-48.6.7.dist-info → vercel_cli-48.8.0.dist-info}/METADATA +1 -1
- {vercel_cli-48.6.7.dist-info → vercel_cli-48.8.0.dist-info}/RECORD +14 -14
- {vercel_cli-48.6.7.dist-info → vercel_cli-48.8.0.dist-info}/WHEEL +0 -0
- {vercel_cli-48.6.7.dist-info → vercel_cli-48.8.0.dist-info}/entry_points.txt +0 -0
|
@@ -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.3",
|
|
7
|
+
"resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-12.2.3.tgz",
|
|
8
|
+
"integrity": "sha512-0g63aF8J7dLYW3PYenxig6gG4PuW3/Gy3PmLXjyX2KwTNrvfIwynKZpJf/naSVSpeN49VbROlxrvaVXVgjlC0A==",
|
|
9
9
|
"license": "Apache-2.0"
|
|
10
10
|
},
|
|
11
11
|
"node_modules/@vercel/detect-agent": {
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
20
|
"node_modules/@vercel/python": {
|
|
21
|
-
"version": "
|
|
22
|
-
"resolved": "https://registry.npmjs.org/@vercel/python/-/python-
|
|
23
|
-
"integrity": "sha512-
|
|
21
|
+
"version": "6.0.0",
|
|
22
|
+
"resolved": "https://registry.npmjs.org/@vercel/python/-/python-6.0.0.tgz",
|
|
23
|
+
"integrity": "sha512-55lsI1LsnTyfKaFmYWb/1qnEG69oA5tvCGDsRFNYGDc5Z9lKOzABIwVVuFK1IpTkXL00AnQFlgq8ni0iGFfBQQ==",
|
|
24
24
|
"license": "Apache-2.0"
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* List of backend frameworks supported by the experimental backends feature
|
|
3
3
|
*/
|
|
4
|
-
export declare const BACKEND_FRAMEWORKS: readonly ["express", "hono", "h3", "nestjs", "fastify"];
|
|
4
|
+
export declare const BACKEND_FRAMEWORKS: readonly ["express", "hono", "h3", "nestjs", "fastify", "elysia"];
|
|
5
5
|
export type BackendFramework = (typeof BACKEND_FRAMEWORKS)[number];
|
|
6
6
|
/**
|
|
7
7
|
* Checks if the given framework is a backend framework
|
|
@@ -24782,7 +24782,8 @@ var BACKEND_FRAMEWORKS = [
|
|
|
24782
24782
|
"hono",
|
|
24783
24783
|
"h3",
|
|
24784
24784
|
"nestjs",
|
|
24785
|
-
"fastify"
|
|
24785
|
+
"fastify",
|
|
24786
|
+
"elysia"
|
|
24786
24787
|
];
|
|
24787
24788
|
function isBackendFramework(framework) {
|
|
24788
24789
|
if (!framework)
|
|
@@ -3206,7 +3206,7 @@ var import_fs2 = __toESM(require("fs"));
|
|
|
3206
3206
|
var import_path2 = require("path");
|
|
3207
3207
|
var import_build_utils3 = require("@vercel/build-utils");
|
|
3208
3208
|
var FASTAPI_ENTRYPOINT_FILENAMES = ["app", "index", "server", "main"];
|
|
3209
|
-
var FASTAPI_ENTRYPOINT_DIRS = ["", "src", "app"];
|
|
3209
|
+
var FASTAPI_ENTRYPOINT_DIRS = ["", "src", "app", "api"];
|
|
3210
3210
|
var FASTAPI_CONTENT_REGEX = /(from\s+fastapi\s+import\s+FastAPI|import\s+fastapi|FastAPI\s*\()/;
|
|
3211
3211
|
var FASTAPI_CANDIDATE_ENTRYPOINTS = FASTAPI_ENTRYPOINT_FILENAMES.flatMap(
|
|
3212
3212
|
(filename) => FASTAPI_ENTRYPOINT_DIRS.map(
|
|
@@ -3225,7 +3225,7 @@ function isFastapiEntrypoint(file) {
|
|
|
3225
3225
|
}
|
|
3226
3226
|
}
|
|
3227
3227
|
var FLASK_ENTRYPOINT_FILENAMES = ["app", "index", "server", "main"];
|
|
3228
|
-
var FLASK_ENTRYPOINT_DIRS = ["", "src", "app"];
|
|
3228
|
+
var FLASK_ENTRYPOINT_DIRS = ["", "src", "app", "api"];
|
|
3229
3229
|
var FLASK_CONTENT_REGEX = /(from\s+flask\s+import\s+Flask|import\s+flask|Flask\s*\()/;
|
|
3230
3230
|
var FLASK_CANDIDATE_ENTRYPOINTS = FLASK_ENTRYPOINT_FILENAMES.flatMap(
|
|
3231
3231
|
(filename) => FLASK_ENTRYPOINT_DIRS.map(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/python",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://vercel.com/docs/runtimes#official-runtimes/python",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@types/jest": "27.4.1",
|
|
22
22
|
"@types/node": "14.18.33",
|
|
23
23
|
"@types/which": "3.0.0",
|
|
24
|
-
"@vercel/build-utils": "12.
|
|
24
|
+
"@vercel/build-utils": "12.2.3",
|
|
25
25
|
"cross-env": "7.0.3",
|
|
26
26
|
"execa": "^1.0.0",
|
|
27
27
|
"fs-extra": "11.1.1",
|
vercel_cli/vendor/package.json
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
"vercel": "./dist/vc.js"
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@vercel/build-utils": "12.2.
|
|
7
|
+
"@vercel/build-utils": "12.2.3",
|
|
8
8
|
"@vercel/detect-agent": "1.0.0",
|
|
9
|
-
"@vercel/python": "
|
|
9
|
+
"@vercel/python": "6.0.0"
|
|
10
10
|
},
|
|
11
11
|
"description": "The command-line interface for Vercel",
|
|
12
12
|
"engines": {
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"dev": "echo \"'pnpm dev [command]' has been removed. Use 'pnpm vercel [command]' instead.\" && exit 1",
|
|
31
31
|
"test": "jest --reporters=default --reporters=jest-junit --env node --verbose --bail",
|
|
32
32
|
"test-dev": "pnpm test test/dev/",
|
|
33
|
-
"test-e2e": "rimraf test/fixtures/integration && pnpm test test/integration-1.test.ts test/integration-2.test.ts test/integration-3.test.ts",
|
|
33
|
+
"test-e2e-node-all-versions": "rimraf test/fixtures/integration && pnpm test test/integration-1.test.ts test/integration-2.test.ts test/integration-3.test.ts",
|
|
34
34
|
"type-check": "tsc --noEmit",
|
|
35
35
|
"vc": "pnpm vercel",
|
|
36
36
|
"vercel": "pnpm build && node ./dist/vc.js",
|
|
37
37
|
"vitest-run": "vitest --config ./vitest.config.mts",
|
|
38
38
|
"vitest-unit": "jest test/unit/ --listTests"
|
|
39
39
|
},
|
|
40
|
-
"version": "48.
|
|
40
|
+
"version": "48.8.0"
|
|
41
41
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: vercel-cli
|
|
3
|
-
Version: 48.
|
|
3
|
+
Version: 48.8.0
|
|
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=9DRhofm4_WVjVWI7QyDSYfOaPk6PdWtvNTPFfacuSnQ,1288
|
|
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=7YIwDK2yiZ-WB-jfCe1Y94g9Eum0_tayUrcSgOf7EDE,8949509
|
|
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=UnTiogNyF5s9SUav3huUpvZ_023_CqYOHkLqgwcfReI,1053
|
|
10
|
+
vercel_cli/vendor/node_modules/@vercel/build-utils/CHANGELOG.md,sha256=lMIZBBFBOup7NS6HG2JbUPfE5zGDG-_s8a8nQFDoYWQ,18950
|
|
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=BF9p5RVzys2lFoz-LNXp8W3MIhQefte7TbyHormtAtI,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,8 +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/framework-helpers.d.ts,sha256=
|
|
35
|
-
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/framework-helpers.js,sha256=
|
|
34
|
+
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/framework-helpers.d.ts,sha256=kaSv_huoAkhBBwTabmHtbLUe-VcQBmQjWjP_QWy0mDw,782
|
|
35
|
+
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/framework-helpers.js,sha256=41oh7NxpVDGwS1J7HVKCAnoF5elgjotUEvx1g0jPfpQ,2003
|
|
36
36
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/generate-node-builder-functions.d.ts,sha256=Qb_-JRWbd1gWWZBjNCRbXGzKneYF9QLQufU4IW0o2g8,509
|
|
37
37
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/generate-node-builder-functions.js,sha256=DhEN1dmoC8xRb3BMVefBCEpOZ6yhZrmdqvRcUFhWCB4,7550
|
|
38
38
|
vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-ignore-filter.d.ts,sha256=Rr_2-k8x2nv7naAZFeV-vDiMjOiyQRn3ldqdSeh3jaE,113
|
|
@@ -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=B4RQSKtdgGUt2zvg_QIDJcWAraRCocNQqf6WNPpzDhg,1138338
|
|
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
|
|
@@ -100,12 +100,12 @@ vercel_cli/vendor/node_modules/@vercel/detect-agent/package.json,sha256=skFFT-Up
|
|
|
100
100
|
vercel_cli/vendor/node_modules/@vercel/detect-agent/dist/index.d.ts,sha256=3HzKZBBpy_L_9ZFprqKrWHCTmazGlzGoqvx6MRABkjg,901
|
|
101
101
|
vercel_cli/vendor/node_modules/@vercel/detect-agent/dist/index.js,sha256=likIDfr0UHioDUkMLymGQoCfoOhDvj0c3mP2VyP9StA,2510
|
|
102
102
|
vercel_cli/vendor/node_modules/@vercel/python/LICENSE,sha256=sHDXe_ssUqHdaZbeDOX2TEmgylXIibFjqWPd9csAHuI,11343
|
|
103
|
-
vercel_cli/vendor/node_modules/@vercel/python/package.json,sha256=
|
|
103
|
+
vercel_cli/vendor/node_modules/@vercel/python/package.json,sha256=MpO0f0K8NXyoRR-2f2pfsqDo0V0iSxH1vf7bhLZQ6T4,1098
|
|
104
104
|
vercel_cli/vendor/node_modules/@vercel/python/vc_init.py,sha256=A7949hQi18B9yqPkTr1bepToi7nKRh_yRP7GwmsI-Ww,28201
|
|
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
|
-
vercel_cli/vendor/node_modules/@vercel/python/dist/index.js,sha256=
|
|
108
|
-
vercel_cli-48.
|
|
109
|
-
vercel_cli-48.
|
|
110
|
-
vercel_cli-48.
|
|
111
|
-
vercel_cli-48.
|
|
107
|
+
vercel_cli/vendor/node_modules/@vercel/python/dist/index.js,sha256=Fm31RpvUIksIVXi2ZHRSOdUScOMpbHL7A2uqspmRcx8,136143
|
|
108
|
+
vercel_cli-48.8.0.dist-info/METADATA,sha256=UjdUYpf5mqGwvU1HMP5GECXWU8NzgdNxaMA2NYtVpOI,7085
|
|
109
|
+
vercel_cli-48.8.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
110
|
+
vercel_cli-48.8.0.dist-info/entry_points.txt,sha256=3iHkg20gi2BZorK1g5UlyZY3tN5E1vJX6PX5-ibn9fI,83
|
|
111
|
+
vercel_cli-48.8.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|