@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 +6 -0
- package/dist/framework-helpers.d.ts +1 -1
- package/dist/framework-helpers.js +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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
|
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)
|