@vercel/static-build 2.8.2 → 2.8.3

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 +186 -0
  2. package/package.json +5 -5
package/dist/index.js CHANGED
@@ -10205,6 +10205,7 @@ var require_frameworks = __commonJS({
10205
10205
  description: "FastAPI framework, high performance, easy to learn, fast to code, ready for production",
10206
10206
  website: "https://fastapi.tiangolo.com",
10207
10207
  useRuntime: { src: "index.py", use: "@vercel/python" },
10208
+ ignoreRuntimes: ["@vercel/python"],
10208
10209
  detectors: {
10209
10210
  some: [
10210
10211
  {
@@ -10256,6 +10257,7 @@ var require_frameworks = __commonJS({
10256
10257
  description: "A Flask app, ready for production",
10257
10258
  website: "https://flask.palletsprojects.com",
10258
10259
  useRuntime: { src: "index.py", use: "@vercel/python" },
10260
+ ignoreRuntimes: ["@vercel/python"],
10259
10261
  detectors: {
10260
10262
  some: [
10261
10263
  {
@@ -11310,6 +11312,190 @@ var require_frameworks = __commonJS({
11310
11312
  dependency: "nestjs",
11311
11313
  getOutputDirName: async () => "public"
11312
11314
  },
11315
+ {
11316
+ name: "Elysia",
11317
+ slug: "elysia",
11318
+ logo: "https://api-frameworks.vercel.sh/framework-logos/elysia.svg",
11319
+ tagline: "Ergonomic framework for humans",
11320
+ description: "TypeScript with End-to-End Type Safety, type integrity, and exceptional developer experience. Supercharged by Bun.",
11321
+ website: "https://elysiajs.com/",
11322
+ useRuntime: { src: "index.js", use: "@vercel/elysia" },
11323
+ defaultRoutes: [
11324
+ {
11325
+ handle: "filesystem"
11326
+ },
11327
+ {
11328
+ src: "/(.*)",
11329
+ dest: "/"
11330
+ }
11331
+ ],
11332
+ detectors: {
11333
+ every: [{ matchPackage: "elysia" }],
11334
+ some: [
11335
+ {
11336
+ path: "app.cjs",
11337
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11338
+ },
11339
+ {
11340
+ path: "app.js",
11341
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11342
+ },
11343
+ {
11344
+ path: "app.mjs",
11345
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11346
+ },
11347
+ {
11348
+ path: "app.mts",
11349
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11350
+ },
11351
+ {
11352
+ path: "app.ts",
11353
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11354
+ },
11355
+ {
11356
+ path: "app.cts",
11357
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11358
+ },
11359
+ {
11360
+ path: "index.cjs",
11361
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11362
+ },
11363
+ {
11364
+ path: "index.js",
11365
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11366
+ },
11367
+ {
11368
+ path: "index.mjs",
11369
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11370
+ },
11371
+ {
11372
+ path: "index.mts",
11373
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11374
+ },
11375
+ {
11376
+ path: "index.ts",
11377
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11378
+ },
11379
+ {
11380
+ path: "index.cts",
11381
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11382
+ },
11383
+ {
11384
+ path: "server.cjs",
11385
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11386
+ },
11387
+ {
11388
+ path: "server.js",
11389
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11390
+ },
11391
+ {
11392
+ path: "server.mjs",
11393
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11394
+ },
11395
+ {
11396
+ path: "server.mts",
11397
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11398
+ },
11399
+ {
11400
+ path: "server.ts",
11401
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11402
+ },
11403
+ {
11404
+ path: "server.cts",
11405
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11406
+ },
11407
+ {
11408
+ path: "src/index.cjs",
11409
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11410
+ },
11411
+ {
11412
+ path: "src/index.js",
11413
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11414
+ },
11415
+ {
11416
+ path: "src/index.mjs",
11417
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11418
+ },
11419
+ {
11420
+ path: "src/index.mts",
11421
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11422
+ },
11423
+ {
11424
+ path: "src/index.ts",
11425
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11426
+ },
11427
+ {
11428
+ path: "src/index.cts",
11429
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11430
+ },
11431
+ {
11432
+ path: "src/app.cjs",
11433
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11434
+ },
11435
+ {
11436
+ path: "src/app.js",
11437
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11438
+ },
11439
+ {
11440
+ path: "src/app.mjs",
11441
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11442
+ },
11443
+ {
11444
+ path: "src/app.mts",
11445
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11446
+ },
11447
+ {
11448
+ path: "src/app.ts",
11449
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11450
+ },
11451
+ {
11452
+ path: "src/app.cts",
11453
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11454
+ },
11455
+ {
11456
+ path: "src/server.cjs",
11457
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11458
+ },
11459
+ {
11460
+ path: "src/server.js",
11461
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11462
+ },
11463
+ {
11464
+ path: "src/server.mjs",
11465
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11466
+ },
11467
+ {
11468
+ path: "src/server.mts",
11469
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11470
+ },
11471
+ {
11472
+ path: "src/server.ts",
11473
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11474
+ },
11475
+ {
11476
+ path: "src/server.cts",
11477
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']elysia["']\\s*(?:\\))?`
11478
+ }
11479
+ ]
11480
+ },
11481
+ settings: {
11482
+ installCommand: {
11483
+ placeholder: "`yarn install`, `pnpm install`, `npm install`, or `bun install`"
11484
+ },
11485
+ buildCommand: {
11486
+ placeholder: "None",
11487
+ value: null
11488
+ },
11489
+ devCommand: {
11490
+ placeholder: "None",
11491
+ value: null
11492
+ },
11493
+ outputDirectory: {
11494
+ value: "N/A"
11495
+ }
11496
+ },
11497
+ getOutputDirName: async () => "public"
11498
+ },
11313
11499
  {
11314
11500
  name: "Fastify",
11315
11501
  slug: "fastify",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/static-build",
3
- "version": "2.8.2",
3
+ "version": "2.8.3",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index",
6
6
  "homepage": "https://vercel.com/docs/build-step",
@@ -14,7 +14,7 @@
14
14
  },
15
15
  "dependencies": {
16
16
  "@vercel/gatsby-plugin-vercel-analytics": "1.0.11",
17
- "@vercel/gatsby-plugin-vercel-builder": "2.0.101",
17
+ "@vercel/gatsby-plugin-vercel-builder": "2.0.102",
18
18
  "@vercel/static-config": "3.1.2",
19
19
  "ts-morph": "12.0.0"
20
20
  },
@@ -28,10 +28,10 @@
28
28
  "@types/node-fetch": "2.5.4",
29
29
  "@types/promise-timeout": "1.3.0",
30
30
  "@types/semver": "7.3.13",
31
- "@vercel/build-utils": "12.2.2",
31
+ "@vercel/build-utils": "12.2.3",
32
32
  "@vercel/error-utils": "2.0.3",
33
- "@vercel/frameworks": "3.14.0",
34
- "@vercel/fs-detectors": "5.7.1",
33
+ "@vercel/frameworks": "3.14.1",
34
+ "@vercel/fs-detectors": "5.7.2",
35
35
  "@vercel/routing-utils": "5.2.1",
36
36
  "execa": "3.2.0",
37
37
  "fs-extra": "10.0.0",