vercel 48.2.5 → 48.2.7

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.
Files changed (2) hide show
  1. package/dist/index.js +51 -0
  2. package/package.json +7 -7
package/dist/index.js CHANGED
@@ -116360,6 +116360,57 @@ var require_frameworks = __commonJS2({
116360
116360
  }
116361
116361
  ]
116362
116362
  },
116363
+ {
116364
+ name: "Flask",
116365
+ slug: "flask",
116366
+ logo: "https://api-frameworks.vercel.sh/framework-logos/flask.svg",
116367
+ tagline: "The Python micro web framework",
116368
+ description: "A Flask app, ready for production",
116369
+ website: "https://flask.palletsprojects.com",
116370
+ useRuntime: { src: "index.py", use: "@vercel/python" },
116371
+ detectors: {
116372
+ some: [
116373
+ {
116374
+ path: "requirements.txt",
116375
+ matchContent: "flask"
116376
+ },
116377
+ {
116378
+ path: "pyproject.toml",
116379
+ matchContent: "flask"
116380
+ },
116381
+ {
116382
+ path: "Pipfile",
116383
+ matchContent: "flask"
116384
+ }
116385
+ ]
116386
+ },
116387
+ settings: {
116388
+ installCommand: {
116389
+ placeholder: "`pip install -r requirements.txt`"
116390
+ },
116391
+ buildCommand: {
116392
+ placeholder: "None",
116393
+ value: null
116394
+ },
116395
+ devCommand: {
116396
+ placeholder: "None",
116397
+ value: null
116398
+ },
116399
+ outputDirectory: {
116400
+ value: "N/A"
116401
+ }
116402
+ },
116403
+ getOutputDirName: async () => "public",
116404
+ defaultRoutes: [
116405
+ {
116406
+ handle: "filesystem"
116407
+ },
116408
+ {
116409
+ src: "/(.*)",
116410
+ dest: "/"
116411
+ }
116412
+ ]
116413
+ },
116363
116414
  {
116364
116415
  name: "FastHTML",
116365
116416
  slug: "fasthtml",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel",
3
- "version": "48.2.5",
3
+ "version": "48.2.7",
4
4
  "preferGlobal": true,
5
5
  "license": "Apache-2.0",
6
6
  "description": "The command-line interface for Vercel",
@@ -29,9 +29,9 @@
29
29
  "@vercel/hono": "0.1.5",
30
30
  "@vercel/h3": "0.1.4",
31
31
  "@vercel/hydrogen": "1.2.4",
32
- "@vercel/next": "4.13.2",
32
+ "@vercel/next": "4.13.3",
33
33
  "@vercel/node": "5.3.26",
34
- "@vercel/python": "5.0.7",
34
+ "@vercel/python": "5.0.8",
35
35
  "@vercel/redwood": "2.3.6",
36
36
  "@vercel/remix-builder": "5.4.13",
37
37
  "@vercel/ruby": "2.2.1",
@@ -85,8 +85,8 @@
85
85
  "@types/yauzl-promise": "2.1.0",
86
86
  "@vercel/client": "17.0.3",
87
87
  "@vercel/error-utils": "2.0.3",
88
- "@vercel/frameworks": "3.11.0",
89
- "@vercel/fs-detectors": "5.6.0",
88
+ "@vercel/frameworks": "3.11.1",
89
+ "@vercel/fs-detectors": "5.6.1",
90
90
  "@vercel/routing-utils": "5.2.0",
91
91
  "@vitest/expect": "2.1.3",
92
92
  "ajv": "6.12.3",
@@ -167,9 +167,9 @@
167
167
  "write-json-file": "2.2.0",
168
168
  "xdg-app-paths": "5.1.0",
169
169
  "yauzl-promise": "2.1.3",
170
- "@vercel-internals/constants": "1.0.4",
171
170
  "@vercel-internals/types": "3.0.6",
172
- "@vercel-internals/get-package-json": "1.0.0"
171
+ "@vercel-internals/get-package-json": "1.0.0",
172
+ "@vercel-internals/constants": "1.0.4"
173
173
  },
174
174
  "scripts": {
175
175
  "test": "jest --reporters=default --reporters=jest-junit --env node --verbose --bail",