@vercel/build-utils 12.2.2 → 12.2.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @vercel/build-utils
2
2
 
3
+ ## 12.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Add Elysia framework ([#14164](https://github.com/vercel/vercel/pull/14164))
8
+
3
9
  ## 12.2.2
4
10
 
5
11
  ### Patch Changes
@@ -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
@@ -29,7 +29,8 @@ const BACKEND_FRAMEWORKS = [
29
29
  "hono",
30
30
  "h3",
31
31
  "nestjs",
32
- "fastify"
32
+ "fastify",
33
+ "elysia"
33
34
  ];
34
35
  function isBackendFramework(framework) {
35
36
  if (!framework)
package/dist/index.js CHANGED
@@ -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)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/build-utils",
3
- "version": "12.2.2",
3
+ "version": "12.2.3",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",