@vercel/static-build 2.7.15 → 2.7.17

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 +58 -0
  2. package/package.json +6 -6
package/dist/index.js CHANGED
@@ -8510,6 +8510,7 @@ var require_frameworks = __commonJS({
8510
8510
  sort: 7,
8511
8511
  supersedes: ["hydrogen", "vite"],
8512
8512
  useRuntime: { src: "package.json", use: "@vercel/remix-builder" },
8513
+ ignoreRuntimes: ["@vercel/node"],
8513
8514
  detectors: {
8514
8515
  some: [
8515
8516
  {
@@ -10412,6 +10413,63 @@ var require_frameworks = __commonJS({
10412
10413
  dependency: "nitropack",
10413
10414
  getOutputDirName: async () => "public"
10414
10415
  },
10416
+ {
10417
+ name: "Hono",
10418
+ slug: "hono",
10419
+ logo: "https://api-frameworks.vercel.sh/framework-logos/hono.svg",
10420
+ tagline: "Web framework built on Web Standards",
10421
+ description: "Fast, lightweight, built on Web Standards. Support for any JavaScript runtime.",
10422
+ website: "https://hono.dev",
10423
+ useRuntime: { src: "index.js", use: "@vercel/hono" },
10424
+ defaultRoutes: [
10425
+ {
10426
+ handle: "filesystem"
10427
+ },
10428
+ {
10429
+ src: "/(.*)",
10430
+ dest: "/"
10431
+ }
10432
+ ],
10433
+ detectors: {
10434
+ every: [{ matchPackage: "hono" }],
10435
+ some: [
10436
+ {
10437
+ path: "index.ts",
10438
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']hono["']\\s*(?:\\))?`
10439
+ },
10440
+ {
10441
+ path: "index.js",
10442
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']hono["']\\s*(?:\\))?`
10443
+ },
10444
+ {
10445
+ path: "src/index.ts",
10446
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']hono["']\\s*(?:\\))?`
10447
+ },
10448
+ {
10449
+ path: "src/index.js",
10450
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']hono["']\\s*(?:\\))?`
10451
+ }
10452
+ ]
10453
+ },
10454
+ settings: {
10455
+ installCommand: {
10456
+ placeholder: "`yarn install`, `pnpm install`, `npm install`, or `bun install`"
10457
+ },
10458
+ buildCommand: {
10459
+ placeholder: "None",
10460
+ value: null
10461
+ },
10462
+ devCommand: {
10463
+ placeholder: "None",
10464
+ value: null
10465
+ },
10466
+ outputDirectory: {
10467
+ value: "N/A"
10468
+ }
10469
+ },
10470
+ dependency: "hono",
10471
+ getOutputDirName: async () => "public"
10472
+ },
10415
10473
  {
10416
10474
  name: "Other",
10417
10475
  slug: null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/static-build",
3
- "version": "2.7.15",
3
+ "version": "2.7.17",
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.89",
17
+ "@vercel/gatsby-plugin-vercel-builder": "2.0.91",
18
18
  "@vercel/static-config": "3.1.1",
19
19
  "ts-morph": "12.0.0"
20
20
  },
@@ -28,11 +28,11 @@
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": "10.6.6",
31
+ "@vercel/build-utils": "11.0.0",
32
32
  "@vercel/error-utils": "2.0.3",
33
- "@vercel/frameworks": "3.7.1",
34
- "@vercel/fs-detectors": "5.4.7",
35
- "@vercel/routing-utils": "5.1.0",
33
+ "@vercel/frameworks": "3.7.4",
34
+ "@vercel/fs-detectors": "5.4.10",
35
+ "@vercel/routing-utils": "5.1.1",
36
36
  "execa": "3.2.0",
37
37
  "fs-extra": "10.0.0",
38
38
  "get-port": "5.0.0",