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

@@ -118121,6 +118121,191 @@ var require_frameworks = __commonJS2({
118121
118121
  dependency: "nestjs",
118122
118122
  getOutputDirName: async () => "public"
118123
118123
  },
118124
+ {
118125
+ name: "Fastify",
118126
+ slug: "fastify",
118127
+ logo: "https://api-frameworks.vercel.sh/framework-logos/fastify.svg",
118128
+ darkModeLogo: "https://api-frameworks.vercel.sh/framework-logos/fastify-dark.svg",
118129
+ tagline: "Fast and low overhead web framework, for Node.js",
118130
+ description: "Fastify is a web framework highly focused on providing the best developer experience with the least overhead and a powerful plugin architecture.",
118131
+ website: "https://fastify.dev/",
118132
+ useRuntime: { src: "index.js", use: "@vercel/fastify" },
118133
+ defaultRoutes: [
118134
+ {
118135
+ handle: "filesystem"
118136
+ },
118137
+ {
118138
+ src: "/(.*)",
118139
+ dest: "/"
118140
+ }
118141
+ ],
118142
+ detectors: {
118143
+ every: [{ matchPackage: "fastify" }],
118144
+ some: [
118145
+ {
118146
+ path: "app.cjs",
118147
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118148
+ },
118149
+ {
118150
+ path: "app.js",
118151
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118152
+ },
118153
+ {
118154
+ path: "app.mjs",
118155
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118156
+ },
118157
+ {
118158
+ path: "app.mts",
118159
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118160
+ },
118161
+ {
118162
+ path: "app.ts",
118163
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118164
+ },
118165
+ {
118166
+ path: "app.cts",
118167
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118168
+ },
118169
+ {
118170
+ path: "index.cjs",
118171
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118172
+ },
118173
+ {
118174
+ path: "index.js",
118175
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118176
+ },
118177
+ {
118178
+ path: "index.mjs",
118179
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118180
+ },
118181
+ {
118182
+ path: "index.mts",
118183
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118184
+ },
118185
+ {
118186
+ path: "index.ts",
118187
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118188
+ },
118189
+ {
118190
+ path: "index.cts",
118191
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118192
+ },
118193
+ {
118194
+ path: "server.cjs",
118195
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118196
+ },
118197
+ {
118198
+ path: "server.js",
118199
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118200
+ },
118201
+ {
118202
+ path: "server.mjs",
118203
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118204
+ },
118205
+ {
118206
+ path: "server.mts",
118207
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118208
+ },
118209
+ {
118210
+ path: "server.ts",
118211
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118212
+ },
118213
+ {
118214
+ path: "server.cts",
118215
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118216
+ },
118217
+ {
118218
+ path: "src/index.cjs",
118219
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118220
+ },
118221
+ {
118222
+ path: "src/index.js",
118223
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118224
+ },
118225
+ {
118226
+ path: "src/index.mjs",
118227
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118228
+ },
118229
+ {
118230
+ path: "src/index.mts",
118231
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118232
+ },
118233
+ {
118234
+ path: "src/index.ts",
118235
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118236
+ },
118237
+ {
118238
+ path: "src/index.cts",
118239
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118240
+ },
118241
+ {
118242
+ path: "src/app.cjs",
118243
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118244
+ },
118245
+ {
118246
+ path: "src/app.js",
118247
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118248
+ },
118249
+ {
118250
+ path: "src/app.mjs",
118251
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118252
+ },
118253
+ {
118254
+ path: "src/app.mts",
118255
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118256
+ },
118257
+ {
118258
+ path: "src/app.ts",
118259
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118260
+ },
118261
+ {
118262
+ path: "src/app.cts",
118263
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118264
+ },
118265
+ {
118266
+ path: "src/server.cjs",
118267
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118268
+ },
118269
+ {
118270
+ path: "src/server.js",
118271
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118272
+ },
118273
+ {
118274
+ path: "src/server.mjs",
118275
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118276
+ },
118277
+ {
118278
+ path: "src/server.mts",
118279
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118280
+ },
118281
+ {
118282
+ path: "src/server.ts",
118283
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118284
+ },
118285
+ {
118286
+ path: "src/server.cts",
118287
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']fastify["']\\s*(?:\\))?`
118288
+ }
118289
+ ]
118290
+ },
118291
+ settings: {
118292
+ installCommand: {
118293
+ placeholder: "`yarn install`, `pnpm install`, `npm install`, or `bun install`"
118294
+ },
118295
+ buildCommand: {
118296
+ placeholder: "None",
118297
+ value: null
118298
+ },
118299
+ devCommand: {
118300
+ placeholder: "None",
118301
+ value: null
118302
+ },
118303
+ outputDirectory: {
118304
+ value: "N/A"
118305
+ }
118306
+ },
118307
+ getOutputDirName: async () => "public"
118308
+ },
118124
118309
  {
118125
118310
  name: "xmcp",
118126
118311
  slug: "xmcp",
@@ -147142,7 +147327,8 @@ async function editProjectSettings(client2, projectSettings, framework, autoConf
147142
147327
  },
147143
147328
  projectSettings
147144
147329
  );
147145
- if (localConfigurationOverrides) {
147330
+ const hasLocalConfigurationOverrides = localConfigurationOverrides && Object.values(localConfigurationOverrides ?? {}).some(Boolean);
147331
+ if (hasLocalConfigurationOverrides) {
147146
147332
  for (const setting of settingKeys) {
147147
147333
  const localConfigValue = localConfigurationOverrides[setting];
147148
147334
  if (localConfigValue)
@@ -169278,7 +169464,7 @@ async function getBuildMatches(vercelConfig, cwd, devServer, fileList) {
169278
169464
  if (src[0] === "/") {
169279
169465
  src = src.substring(1);
169280
169466
  }
169281
- if (buildConfig.config?.framework === "hono" || buildConfig.config?.framework === "express" || buildConfig.config?.framework === "h3" || buildConfig.config?.framework === "nestjs") {
169467
+ if (buildConfig.config?.framework === "hono" || buildConfig.config?.framework === "express" || buildConfig.config?.framework === "h3" || buildConfig.config?.framework === "nestjs" || buildConfig.config?.framework === "fastify") {
169282
169468
  src = "package.json";
169283
169469
  }
169284
169470
  if (buildConfig.config?.framework === "fastapi" || buildConfig.config?.framework === "flask") {
@@ -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.4.0"
40
+ "version": "48.5.0"
41
41
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vercel-cli
3
- Version: 48.4.0
3
+ Version: 48.5.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,10 +1,10 @@
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=1l_X7i6fnzun3PoEcM1dykjK0XJ04pPnnf9L_ZHJNJg,1262
3
+ vercel_cli/vendor/package.json,sha256=XVbnrhyL4baMAzLFeikDzNyjFDIDl5QaKB6Qhhnxhcs,1262
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=7C3w-WGusPEBr_HDuyHQL8foyPvrXmZoA4-vtso2fo8,8915370
7
+ vercel_cli/vendor/dist/index.js,sha256=TlJrWGYiVqgDNXI_tVfVPhqZDYAQ458kZvaa41XG19M,8922649
8
8
  vercel_cli/vendor/dist/vc.js,sha256=AAC4u6uwjpO0KfFVuLRs5YWXjW4aMCkgSj_45hR3W8k,340
9
9
  vercel_cli/vendor/node_modules/.package-lock.json,sha256=Lw1SannGfehBiyqTl-DbIVw01GN_aMw3OjzKB2AMDes,1055
10
10
  vercel_cli/vendor/node_modules/@vercel/build-utils/CHANGELOG.md,sha256=rxP_tNO7r-LfoYGHx-JkXq1GT9jhqJYd-VBqlJCxmcw,18452
@@ -103,7 +103,7 @@ vercel_cli/vendor/node_modules/@vercel/python/vc_init.py,sha256=A7949hQi18B9yqPk
103
103
  vercel_cli/vendor/node_modules/@vercel/python/vc_init_dev_asgi.py,sha256=pV9s5Jz4AS_JswthCOP3L6SPWVgk_2kRD1REgA9GKIQ,3078
104
104
  vercel_cli/vendor/node_modules/@vercel/python/vc_init_dev_wsgi.py,sha256=pnNGrPJtPF9OdioaiIdD_OgA3qdio4HqGmKaenogtAk,4078
105
105
  vercel_cli/vendor/node_modules/@vercel/python/dist/index.js,sha256=fAumiV0j6qLydhmE1mcuKhUarPee09cOpcOlwrUOz_0,136129
106
- vercel_cli-48.4.0.dist-info/METADATA,sha256=DCvAiUl3wqND-Ok43CK4h8eTclm5txhV_bOyQZrvb6k,7085
107
- vercel_cli-48.4.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
108
- vercel_cli-48.4.0.dist-info/entry_points.txt,sha256=3iHkg20gi2BZorK1g5UlyZY3tN5E1vJX6PX5-ibn9fI,83
109
- vercel_cli-48.4.0.dist-info/RECORD,,
106
+ vercel_cli-48.5.0.dist-info/METADATA,sha256=V9N7KqxT5Y9Srqgc1E2nI21QQSuE2U7KTSg3LxqnhiU,7085
107
+ vercel_cli-48.5.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
108
+ vercel_cli-48.5.0.dist-info/entry_points.txt,sha256=3iHkg20gi2BZorK1g5UlyZY3tN5E1vJX6PX5-ibn9fI,83
109
+ vercel_cli-48.5.0.dist-info/RECORD,,