@mastra/deployer-vercel 0.1.23-alpha.4 → 0.1.24-alpha.0
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/dist/index.cjs +4 -0
- package/dist/index.js +4 -0
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -160,6 +160,10 @@ const app = await createHonoServer(mastra);
|
|
|
160
160
|
|
|
161
161
|
export const GET = handle(app);
|
|
162
162
|
export const POST = handle(app);
|
|
163
|
+
export const PUT = handle(app);
|
|
164
|
+
export const DELETE = handle(app);
|
|
165
|
+
export const OPTIONS = handle(app);
|
|
166
|
+
export const HEAD = handle(app);
|
|
163
167
|
`;
|
|
164
168
|
}
|
|
165
169
|
writeVercelJSON(outputDirectory, files = ["./*"]) {
|
package/dist/index.js
CHANGED
|
@@ -135,6 +135,10 @@ const app = await createHonoServer(mastra);
|
|
|
135
135
|
|
|
136
136
|
export const GET = handle(app);
|
|
137
137
|
export const POST = handle(app);
|
|
138
|
+
export const PUT = handle(app);
|
|
139
|
+
export const DELETE = handle(app);
|
|
140
|
+
export const OPTIONS = handle(app);
|
|
141
|
+
export const HEAD = handle(app);
|
|
138
142
|
`;
|
|
139
143
|
}
|
|
140
144
|
writeVercelJSON(outputDirectory, files = ["./*"]) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/deployer-vercel",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.24-alpha.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@rollup/plugin-virtual": "^3.0.2",
|
|
29
29
|
"fs-extra": "^11.3.0",
|
|
30
|
-
"@mastra/
|
|
31
|
-
"@mastra/
|
|
30
|
+
"@mastra/core": "^0.9.5-alpha.0",
|
|
31
|
+
"@mastra/deployer": "^0.3.5-alpha.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@microsoft/api-extractor": "^7.52.5",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"typescript": "^5.8.2",
|
|
39
39
|
"vercel": "^39.4.2",
|
|
40
40
|
"vitest": "^3.1.2",
|
|
41
|
-
"@internal/lint": "0.0.
|
|
41
|
+
"@internal/lint": "0.0.5"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting",
|