@mastra/deployer-vercel 0.0.0-trigger-playground-ui-package-20250506151043 → 0.0.0-unified-sidebar-20251010130811
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 +3808 -0
- package/LICENSE.md +11 -42
- package/README.md +9 -6
- package/dist/index.cjs +61 -148
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +16 -1
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +62 -130
- package/dist/index.js.map +1 -0
- package/dist/types.d.ts +13 -0
- package/dist/types.d.ts.map +1 -0
- package/package.json +31 -17
- package/dist/_tsup-dts-rollup.d.cts +0 -23
- package/dist/_tsup-dts-rollup.d.ts +0 -23
- package/dist/index.d.cts +0 -1
package/LICENSE.md
CHANGED
|
@@ -1,46 +1,15 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Apache License 2.0
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2025
|
|
3
|
+
Copyright (c) 2025 Kepler Software, Inc.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
you may not use this file except in compliance with the License.
|
|
7
|
+
You may obtain a copy of the License at
|
|
7
8
|
|
|
8
|
-
|
|
9
|
-
The licensor grants you a non-exclusive, royalty-free, worldwide, non-sublicensable, non-transferable license to use, copy, distribute, make available, and prepare derivative works of the software, in each case subject to the limitations and conditions below
|
|
9
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
You may not alter, remove, or obscure any licensing, copyright, or other notices of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law.
|
|
17
|
-
|
|
18
|
-
**Patents**
|
|
19
|
-
The licensor grants you a license, under any patent claims the licensor can license, or becomes able to license, to make, have made, use, sell, offer for sale, import and have imported the software, in each case subject to the limitations and conditions in this license. This license does not cover any patent claims that you cause to be infringed by modifications or additions to the software. If you or your company make any written claim that the software infringes or contributes to infringement of any patent, your patent license for the software granted under these terms ends immediately. If your company makes such a claim, your patent license ends immediately for work on behalf of your company.
|
|
20
|
-
|
|
21
|
-
**Notices**
|
|
22
|
-
You must ensure that anyone who gets a copy of any part of the software from you also gets a copy of these terms.
|
|
23
|
-
|
|
24
|
-
If you modify the software, you must include in any modified copies of the software prominent notices stating that you have modified the software.
|
|
25
|
-
|
|
26
|
-
**No Other Rights**
|
|
27
|
-
These terms do not imply any licenses other than those expressly granted in these terms.
|
|
28
|
-
|
|
29
|
-
**Termination**
|
|
30
|
-
If you use the software in violation of these terms, such use is not licensed, and your licenses will automatically terminate. If the licensor provides you with a notice of your violation, and you cease all violation of this license no later than 30 days after you receive that notice, your licenses will be reinstated retroactively. However, if you violate these terms after such reinstatement, any additional violation of these terms will cause your licenses to terminate automatically and permanently.
|
|
31
|
-
|
|
32
|
-
**No Liability**
|
|
33
|
-
As far as the law allows, the software comes as is, without any warranty or condition, and the licensor will not be liable to you for any damages arising out of these terms or the use or nature of the software, under any kind of legal claim.
|
|
34
|
-
|
|
35
|
-
**Definitions**
|
|
36
|
-
The _licensor_ is the entity offering these terms, and the _software_ is the software the licensor makes available under these terms, including any portion of it.
|
|
37
|
-
|
|
38
|
-
_you_ refers to the individual or entity agreeing to these terms.
|
|
39
|
-
|
|
40
|
-
_your company_ is any legal entity, sole proprietorship, or other kind of organization that you work for, plus all organizations that have control over, are under the control of, or are under common control with that organization. _control_ means ownership of substantially all the assets of an entity, or the power to direct its management and policies by vote, contract, or otherwise. Control can be direct or indirect.
|
|
41
|
-
|
|
42
|
-
_your licenses_ are all the licenses granted to you for the software under these terms.
|
|
43
|
-
|
|
44
|
-
_use_ means anything you do with the software requiring one of your licenses.
|
|
45
|
-
|
|
46
|
-
_trademark_ means trademarks, service marks, and similar rights.
|
|
11
|
+
Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
See the License for the specific language governing permissions and
|
|
15
|
+
limitations under the License.
|
package/README.md
CHANGED
|
@@ -25,9 +25,10 @@ import { Mastra } from '@mastra/core';
|
|
|
25
25
|
import { VercelDeployer } from '@mastra/deployer-vercel';
|
|
26
26
|
|
|
27
27
|
const deployer = new VercelDeployer({
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
// Optional per-function overrides (written to .vc-config.json)
|
|
29
|
+
maxDuration: 600,
|
|
30
|
+
memory: 1536,
|
|
31
|
+
regions: ['sfo1', 'iad1'],
|
|
31
32
|
});
|
|
32
33
|
|
|
33
34
|
const mastra = new Mastra({
|
|
@@ -40,9 +41,11 @@ const mastra = new Mastra({
|
|
|
40
41
|
|
|
41
42
|
### Constructor Options
|
|
42
43
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
- `
|
|
44
|
+
High‑value overrides written to `.vercel/output/functions/index.func/.vc-config.json`:
|
|
45
|
+
|
|
46
|
+
- `maxDuration?: number` — Function execution timeout (seconds)
|
|
47
|
+
- `memory?: number` — Function memory (MB)
|
|
48
|
+
- `regions?: string[]` — Regions (e.g. `['sfo1','iad1']`)
|
|
46
49
|
|
|
47
50
|
## Project Structure
|
|
48
51
|
|
package/dist/index.cjs
CHANGED
|
@@ -1,116 +1,37 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var child_process = require('child_process');
|
|
4
3
|
var fs = require('fs');
|
|
5
4
|
var path = require('path');
|
|
6
5
|
var process = require('process');
|
|
7
6
|
var deployer = require('@mastra/deployer');
|
|
7
|
+
var esm = require('fs-extra/esm');
|
|
8
8
|
|
|
9
9
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
10
|
|
|
11
|
-
function _interopNamespace(e) {
|
|
12
|
-
if (e && e.__esModule) return e;
|
|
13
|
-
var n = Object.create(null);
|
|
14
|
-
if (e) {
|
|
15
|
-
Object.keys(e).forEach(function (k) {
|
|
16
|
-
if (k !== 'default') {
|
|
17
|
-
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
18
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
19
|
-
enumerable: true,
|
|
20
|
-
get: function () { return e[k]; }
|
|
21
|
-
});
|
|
22
|
-
}
|
|
23
|
-
});
|
|
24
|
-
}
|
|
25
|
-
n.default = e;
|
|
26
|
-
return Object.freeze(n);
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
var child_process__namespace = /*#__PURE__*/_interopNamespace(child_process);
|
|
30
11
|
var process__default = /*#__PURE__*/_interopDefault(process);
|
|
31
12
|
|
|
32
13
|
// src/index.ts
|
|
33
14
|
var VercelDeployer = class extends deployer.Deployer {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
token;
|
|
37
|
-
constructor({ teamSlug, projectName, token }) {
|
|
15
|
+
vcConfigOverrides = {};
|
|
16
|
+
constructor(options = {}) {
|
|
38
17
|
super({ name: "VERCEL" });
|
|
39
|
-
this.
|
|
40
|
-
this.
|
|
41
|
-
this.token = token;
|
|
42
|
-
}
|
|
43
|
-
getProjectId({ dir }) {
|
|
44
|
-
const projectJsonPath = path.join(dir, "output", ".vercel", "project.json");
|
|
45
|
-
try {
|
|
46
|
-
const projectJson = JSON.parse(fs.readFileSync(projectJsonPath, "utf-8"));
|
|
47
|
-
return projectJson.projectId;
|
|
48
|
-
} catch {
|
|
49
|
-
throw new Error("Could not find project ID. Make sure the project has been deployed first.");
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
async getTeamId() {
|
|
53
|
-
const response = await fetch(`https://api.vercel.com/v2/teams`, {
|
|
54
|
-
headers: {
|
|
55
|
-
Authorization: `Bearer ${this.token}`
|
|
56
|
-
}
|
|
57
|
-
});
|
|
58
|
-
const res = await response.json();
|
|
59
|
-
const teams = res.teams;
|
|
60
|
-
return teams.find((team) => team.slug === this.teamSlug)?.id;
|
|
61
|
-
}
|
|
62
|
-
async syncEnv(envVars, { outputDirectory }) {
|
|
63
|
-
console.log("Syncing environment variables...");
|
|
64
|
-
const vercelEnvVars = Array.from(envVars.entries()).map(([key, value]) => {
|
|
65
|
-
if (!key || !value) {
|
|
66
|
-
throw new Error(`Invalid environment variable format: ${key || value}`);
|
|
67
|
-
}
|
|
68
|
-
return {
|
|
69
|
-
key,
|
|
70
|
-
value,
|
|
71
|
-
target: ["production", "preview", "development"],
|
|
72
|
-
type: "plain"
|
|
73
|
-
};
|
|
74
|
-
});
|
|
75
|
-
try {
|
|
76
|
-
const projectId = this.getProjectId({ dir: outputDirectory });
|
|
77
|
-
const teamId = await this.getTeamId();
|
|
78
|
-
const response = await fetch(
|
|
79
|
-
`https://api.vercel.com/v10/projects/${projectId}/env?teamId=${teamId}&upsert=true`,
|
|
80
|
-
{
|
|
81
|
-
method: "POST",
|
|
82
|
-
headers: {
|
|
83
|
-
Authorization: `Bearer ${this.token}`,
|
|
84
|
-
"Content-Type": "application/json"
|
|
85
|
-
},
|
|
86
|
-
body: JSON.stringify(vercelEnvVars)
|
|
87
|
-
}
|
|
88
|
-
);
|
|
89
|
-
if (!response.ok) {
|
|
90
|
-
const error = await response.json();
|
|
91
|
-
throw new Error(`Failed to sync environment variables: ${error.message}`);
|
|
92
|
-
}
|
|
93
|
-
console.log("\u2713 Successfully synced environment variables");
|
|
94
|
-
} catch (error) {
|
|
95
|
-
if (error instanceof Error) {
|
|
96
|
-
console.error("Failed to sync environment variables:", error.message);
|
|
97
|
-
} else {
|
|
98
|
-
console.error("Failed to sync environment variables:", error);
|
|
99
|
-
}
|
|
100
|
-
throw error;
|
|
101
|
-
}
|
|
18
|
+
this.outputDir = path.join(".vercel", "output", "functions", "index.func");
|
|
19
|
+
this.vcConfigOverrides = { ...options };
|
|
102
20
|
}
|
|
103
21
|
async prepare(outputDirectory) {
|
|
104
22
|
await super.prepare(outputDirectory);
|
|
23
|
+
this.writeVercelJSON(path.join(outputDirectory, this.outputDir, "..", ".."));
|
|
105
24
|
}
|
|
106
25
|
getEntry() {
|
|
107
26
|
return `
|
|
108
27
|
import { handle } from 'hono/vercel'
|
|
109
28
|
import { mastra } from '#mastra';
|
|
110
|
-
import { createHonoServer } from '#server';
|
|
29
|
+
import { createHonoServer, getToolExports } from '#server';
|
|
30
|
+
import { tools } from '#tools';
|
|
111
31
|
import { evaluate } from '@mastra/core/eval';
|
|
112
32
|
import { AvailableHooks, registerHook } from '@mastra/core/hooks';
|
|
113
33
|
import { TABLE_EVALS } from '@mastra/core/storage';
|
|
34
|
+
import { scoreTracesWorkflow } from '@mastra/core/scores/scoreTraces';
|
|
114
35
|
import { checkEvalStorageFields } from '@mastra/core/utils';
|
|
115
36
|
|
|
116
37
|
registerHook(AvailableHooks.ON_GENERATION, ({ input, output, metric, runId, agentName, instructions }) => {
|
|
@@ -126,8 +47,7 @@ registerHook(AvailableHooks.ON_GENERATION, ({ input, output, metric, runId, agen
|
|
|
126
47
|
});
|
|
127
48
|
|
|
128
49
|
if (mastra.getStorage()) {
|
|
129
|
-
|
|
130
|
-
mastra.getStorage().init();
|
|
50
|
+
mastra.__registerInternalWorkflow(scoreTracesWorkflow);
|
|
131
51
|
}
|
|
132
52
|
|
|
133
53
|
registerHook(AvailableHooks.ON_EVALUATION, async traceObject => {
|
|
@@ -156,79 +76,72 @@ registerHook(AvailableHooks.ON_EVALUATION, async traceObject => {
|
|
|
156
76
|
}
|
|
157
77
|
});
|
|
158
78
|
|
|
159
|
-
const app = await createHonoServer(mastra);
|
|
79
|
+
const app = await createHonoServer(mastra, { tools: getToolExports(tools) });
|
|
160
80
|
|
|
161
81
|
export const GET = handle(app);
|
|
162
82
|
export const POST = handle(app);
|
|
83
|
+
export const PUT = handle(app);
|
|
84
|
+
export const DELETE = handle(app);
|
|
85
|
+
export const PATCH = handle(app);
|
|
86
|
+
export const OPTIONS = handle(app);
|
|
87
|
+
export const HEAD = handle(app);
|
|
163
88
|
`;
|
|
164
89
|
}
|
|
165
|
-
writeVercelJSON(outputDirectory
|
|
90
|
+
writeVercelJSON(outputDirectory) {
|
|
166
91
|
fs.writeFileSync(
|
|
167
|
-
path.join(outputDirectory,
|
|
168
|
-
JSON.stringify(
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
}
|
|
178
|
-
],
|
|
179
|
-
routes: [
|
|
180
|
-
{
|
|
181
|
-
src: "/(.*)",
|
|
182
|
-
dest: "index.mjs"
|
|
183
|
-
}
|
|
184
|
-
]
|
|
185
|
-
},
|
|
186
|
-
null,
|
|
187
|
-
2
|
|
188
|
-
)
|
|
92
|
+
path.join(outputDirectory, "config.json"),
|
|
93
|
+
JSON.stringify({
|
|
94
|
+
version: 3,
|
|
95
|
+
routes: [
|
|
96
|
+
{
|
|
97
|
+
src: "/(.*)",
|
|
98
|
+
dest: "/"
|
|
99
|
+
}
|
|
100
|
+
]
|
|
101
|
+
})
|
|
189
102
|
);
|
|
190
103
|
}
|
|
191
|
-
async bundle(entryFile, outputDirectory, toolsPaths) {
|
|
192
|
-
const result = await this._bundle(
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
(
|
|
104
|
+
async bundle(entryFile, outputDirectory, { toolsPaths, projectRoot }) {
|
|
105
|
+
const result = await this._bundle(
|
|
106
|
+
this.getEntry(),
|
|
107
|
+
entryFile,
|
|
108
|
+
{ outputDirectory, projectRoot },
|
|
109
|
+
toolsPaths,
|
|
110
|
+
path.join(outputDirectory, this.outputDir)
|
|
198
111
|
);
|
|
199
|
-
|
|
112
|
+
const nodeVersion = process__default.default.version?.split(".")?.[0]?.replace("v", "") ?? "22";
|
|
113
|
+
const vcConfig = {
|
|
114
|
+
handler: "index.mjs",
|
|
115
|
+
launcherType: "Nodejs",
|
|
116
|
+
runtime: `nodejs${nodeVersion}.x`,
|
|
117
|
+
shouldAddHelpers: true
|
|
118
|
+
};
|
|
119
|
+
const { maxDuration, memory, regions } = this.vcConfigOverrides;
|
|
120
|
+
if (typeof maxDuration === "number") vcConfig.maxDuration = maxDuration;
|
|
121
|
+
if (typeof memory === "number") vcConfig.memory = memory;
|
|
122
|
+
if (Array.isArray(regions) && regions.length > 0) vcConfig.regions = regions;
|
|
123
|
+
fs.writeFileSync(path.join(outputDirectory, this.outputDir, ".vc-config.json"), JSON.stringify(vcConfig, null, 2));
|
|
124
|
+
await esm.move(path.join(outputDirectory, ".vercel", "output"), path.join(process__default.default.cwd(), ".vercel", "output"), {
|
|
125
|
+
overwrite: true
|
|
126
|
+
});
|
|
200
127
|
return result;
|
|
201
128
|
}
|
|
202
|
-
async deploy(
|
|
203
|
-
|
|
204
|
-
const commandArgs = [
|
|
205
|
-
"--scope",
|
|
206
|
-
this.teamSlug,
|
|
207
|
-
"--cwd",
|
|
208
|
-
path.join(outputDirectory, this.outputDir),
|
|
209
|
-
"--token",
|
|
210
|
-
this.token,
|
|
211
|
-
"deploy",
|
|
212
|
-
"--yes",
|
|
213
|
-
...this.projectName ? ["--name", this.projectName] : []
|
|
214
|
-
];
|
|
215
|
-
child_process__namespace.execSync(`npx vercel ${commandArgs.join(" ")}`, {
|
|
216
|
-
cwd: path.join(outputDirectory, this.outputDir),
|
|
217
|
-
env: {
|
|
218
|
-
PATH: process__default.default.env.PATH
|
|
219
|
-
},
|
|
220
|
-
stdio: "inherit"
|
|
221
|
-
});
|
|
222
|
-
this.logger.info("Deployment started on Vercel. You can wait for it to finish or exit this command.");
|
|
223
|
-
if (envVars.size > 0) {
|
|
224
|
-
await this.syncEnv(envVars, { outputDirectory });
|
|
225
|
-
} else {
|
|
226
|
-
this.logger.info("\nAdd your ENV vars to .env or your vercel dashboard.\n");
|
|
227
|
-
}
|
|
129
|
+
async deploy() {
|
|
130
|
+
this.logger?.info("Deploying to Vercel is deprecated. Please use the Vercel dashboard to deploy.");
|
|
228
131
|
}
|
|
229
132
|
async lint(entryFile, outputDirectory, toolsPaths) {
|
|
230
133
|
await super.lint(entryFile, outputDirectory, toolsPaths);
|
|
134
|
+
const hasLibsql = await this.deps.checkDependencies(["@mastra/libsql"]) === `ok`;
|
|
135
|
+
if (hasLibsql) {
|
|
136
|
+
this.logger.error(
|
|
137
|
+
`Vercel Deployer does not support @libsql/client(which may have been installed by @mastra/libsql) as a dependency.
|
|
138
|
+
Use other Mastra Storage options instead e.g @mastra/pg`
|
|
139
|
+
);
|
|
140
|
+
process__default.default.exit(1);
|
|
141
|
+
}
|
|
231
142
|
}
|
|
232
143
|
};
|
|
233
144
|
|
|
234
145
|
exports.VercelDeployer = VercelDeployer;
|
|
146
|
+
//# sourceMappingURL=index.cjs.map
|
|
147
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":["Deployer","join","writeFileSync","process","move"],"mappings":"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","file":"index.cjs","sourcesContent":["import { writeFileSync } from 'fs';\nimport { join } from 'path';\nimport process from 'process';\nimport { Deployer } from '@mastra/deployer';\nimport { move } from 'fs-extra/esm';\nimport type { VcConfig, VcConfigOverrides, VercelDeployerOptions } from './types';\n\nexport class VercelDeployer extends Deployer {\n private vcConfigOverrides: VcConfigOverrides = {};\n\n constructor(options: VercelDeployerOptions = {}) {\n super({ name: 'VERCEL' });\n this.outputDir = join('.vercel', 'output', 'functions', 'index.func');\n\n // Store all overrides centrally\n this.vcConfigOverrides = { ...options };\n }\n\n async prepare(outputDirectory: string): Promise<void> {\n await super.prepare(outputDirectory);\n\n this.writeVercelJSON(join(outputDirectory, this.outputDir, '..', '..'));\n }\n\n private getEntry(): string {\n return `\nimport { handle } from 'hono/vercel'\nimport { mastra } from '#mastra';\nimport { createHonoServer, getToolExports } from '#server';\nimport { tools } from '#tools';\nimport { evaluate } from '@mastra/core/eval';\nimport { AvailableHooks, registerHook } from '@mastra/core/hooks';\nimport { TABLE_EVALS } from '@mastra/core/storage';\nimport { scoreTracesWorkflow } from '@mastra/core/scores/scoreTraces';\nimport { checkEvalStorageFields } from '@mastra/core/utils';\n\nregisterHook(AvailableHooks.ON_GENERATION, ({ input, output, metric, runId, agentName, instructions }) => {\n evaluate({\n agentName,\n input,\n metric,\n output,\n runId,\n globalRunId: runId,\n instructions,\n });\n});\n\nif (mastra.getStorage()) {\n mastra.__registerInternalWorkflow(scoreTracesWorkflow);\n}\n\nregisterHook(AvailableHooks.ON_EVALUATION, async traceObject => {\n const storage = mastra.getStorage();\n if (storage) {\n // Check for required fields\n const logger = mastra?.getLogger();\n const areFieldsValid = checkEvalStorageFields(traceObject, logger);\n if (!areFieldsValid) return;\n\n await storage.insert({\n tableName: TABLE_EVALS,\n record: {\n input: traceObject.input,\n output: traceObject.output,\n result: JSON.stringify(traceObject.result || {}),\n agent_name: traceObject.agentName,\n metric_name: traceObject.metricName,\n instructions: traceObject.instructions,\n test_info: null,\n global_run_id: traceObject.globalRunId,\n run_id: traceObject.runId,\n created_at: new Date().toISOString(),\n },\n });\n }\n});\n\nconst app = await createHonoServer(mastra, { tools: getToolExports(tools) });\n\nexport const GET = handle(app);\nexport const POST = handle(app);\nexport const PUT = handle(app);\nexport const DELETE = handle(app);\nexport const PATCH = handle(app);\nexport const OPTIONS = handle(app);\nexport const HEAD = handle(app);\n`;\n }\n\n private writeVercelJSON(outputDirectory: string) {\n writeFileSync(\n join(outputDirectory, 'config.json'),\n JSON.stringify({\n version: 3,\n routes: [\n {\n src: '/(.*)',\n dest: '/',\n },\n ],\n }),\n );\n }\n\n async bundle(\n entryFile: string,\n outputDirectory: string,\n { toolsPaths, projectRoot }: { toolsPaths: (string | string[])[]; projectRoot: string },\n ): Promise<void> {\n const result = await this._bundle(\n this.getEntry(),\n entryFile,\n { outputDirectory, projectRoot },\n toolsPaths,\n join(outputDirectory, this.outputDir),\n );\n\n const nodeVersion = process.version?.split('.')?.[0]?.replace('v', '') ?? '22';\n\n const vcConfig: VcConfig = {\n handler: 'index.mjs',\n launcherType: 'Nodejs',\n runtime: `nodejs${nodeVersion}.x`,\n shouldAddHelpers: true,\n };\n\n // Merge supported overrides\n const { maxDuration, memory, regions } = this.vcConfigOverrides;\n if (typeof maxDuration === 'number') vcConfig.maxDuration = maxDuration;\n if (typeof memory === 'number') vcConfig.memory = memory;\n if (Array.isArray(regions) && regions.length > 0) vcConfig.regions = regions;\n\n writeFileSync(join(outputDirectory, this.outputDir, '.vc-config.json'), JSON.stringify(vcConfig, null, 2));\n\n await move(join(outputDirectory, '.vercel', 'output'), join(process.cwd(), '.vercel', 'output'), {\n overwrite: true,\n });\n\n return result;\n }\n\n async deploy(): Promise<void> {\n this.logger?.info('Deploying to Vercel is deprecated. Please use the Vercel dashboard to deploy.');\n }\n\n async lint(entryFile: string, outputDirectory: string, toolsPaths: (string | string[])[]): Promise<void> {\n await super.lint(entryFile, outputDirectory, toolsPaths);\n\n const hasLibsql = (await this.deps.checkDependencies(['@mastra/libsql'])) === `ok`;\n\n if (hasLibsql) {\n this.logger.error(\n `Vercel Deployer does not support @libsql/client(which may have been installed by @mastra/libsql) as a dependency. \n\t\t\t\tUse other Mastra Storage options instead e.g @mastra/pg`,\n );\n process.exit(1);\n }\n }\n}\n"]}
|
package/dist/index.d.ts
CHANGED
|
@@ -1 +1,16 @@
|
|
|
1
|
-
|
|
1
|
+
import { Deployer } from '@mastra/deployer';
|
|
2
|
+
import type { VercelDeployerOptions } from './types.js';
|
|
3
|
+
export declare class VercelDeployer extends Deployer {
|
|
4
|
+
private vcConfigOverrides;
|
|
5
|
+
constructor(options?: VercelDeployerOptions);
|
|
6
|
+
prepare(outputDirectory: string): Promise<void>;
|
|
7
|
+
private getEntry;
|
|
8
|
+
private writeVercelJSON;
|
|
9
|
+
bundle(entryFile: string, outputDirectory: string, { toolsPaths, projectRoot }: {
|
|
10
|
+
toolsPaths: (string | string[])[];
|
|
11
|
+
projectRoot: string;
|
|
12
|
+
}): Promise<void>;
|
|
13
|
+
deploy(): Promise<void>;
|
|
14
|
+
lint(entryFile: string, outputDirectory: string, toolsPaths: (string | string[])[]): Promise<void>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,OAAO,KAAK,EAA+B,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAElF,qBAAa,cAAe,SAAQ,QAAQ;IAC1C,OAAO,CAAC,iBAAiB,CAAyB;gBAEtC,OAAO,GAAE,qBAA0B;IAQzC,OAAO,CAAC,eAAe,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAMrD,OAAO,CAAC,QAAQ;IAkEhB,OAAO,CAAC,eAAe;IAejB,MAAM,CACV,SAAS,EAAE,MAAM,EACjB,eAAe,EAAE,MAAM,EACvB,EAAE,UAAU,EAAE,WAAW,EAAE,EAAE;QAAE,UAAU,EAAE,CAAC,MAAM,GAAG,MAAM,EAAE,CAAC,EAAE,CAAC;QAAC,WAAW,EAAE,MAAM,CAAA;KAAE,GACtF,OAAO,CAAC,IAAI,CAAC;IAiCV,MAAM,IAAI,OAAO,CAAC,IAAI,CAAC;IAIvB,IAAI,CAAC,SAAS,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,UAAU,EAAE,CAAC,MAAM,GAAG,MAAM,EAAE,CAAC,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;CAazG"}
|
package/dist/index.js
CHANGED
|
@@ -1,91 +1,31 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { readFileSync, writeFileSync, readdirSync } from 'fs';
|
|
1
|
+
import { writeFileSync } from 'fs';
|
|
3
2
|
import { join } from 'path';
|
|
4
3
|
import process from 'process';
|
|
5
4
|
import { Deployer } from '@mastra/deployer';
|
|
5
|
+
import { move } from 'fs-extra/esm';
|
|
6
6
|
|
|
7
7
|
// src/index.ts
|
|
8
8
|
var VercelDeployer = class extends Deployer {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
token;
|
|
12
|
-
constructor({ teamSlug, projectName, token }) {
|
|
9
|
+
vcConfigOverrides = {};
|
|
10
|
+
constructor(options = {}) {
|
|
13
11
|
super({ name: "VERCEL" });
|
|
14
|
-
this.
|
|
15
|
-
this.
|
|
16
|
-
this.token = token;
|
|
17
|
-
}
|
|
18
|
-
getProjectId({ dir }) {
|
|
19
|
-
const projectJsonPath = join(dir, "output", ".vercel", "project.json");
|
|
20
|
-
try {
|
|
21
|
-
const projectJson = JSON.parse(readFileSync(projectJsonPath, "utf-8"));
|
|
22
|
-
return projectJson.projectId;
|
|
23
|
-
} catch {
|
|
24
|
-
throw new Error("Could not find project ID. Make sure the project has been deployed first.");
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
async getTeamId() {
|
|
28
|
-
const response = await fetch(`https://api.vercel.com/v2/teams`, {
|
|
29
|
-
headers: {
|
|
30
|
-
Authorization: `Bearer ${this.token}`
|
|
31
|
-
}
|
|
32
|
-
});
|
|
33
|
-
const res = await response.json();
|
|
34
|
-
const teams = res.teams;
|
|
35
|
-
return teams.find((team) => team.slug === this.teamSlug)?.id;
|
|
36
|
-
}
|
|
37
|
-
async syncEnv(envVars, { outputDirectory }) {
|
|
38
|
-
console.log("Syncing environment variables...");
|
|
39
|
-
const vercelEnvVars = Array.from(envVars.entries()).map(([key, value]) => {
|
|
40
|
-
if (!key || !value) {
|
|
41
|
-
throw new Error(`Invalid environment variable format: ${key || value}`);
|
|
42
|
-
}
|
|
43
|
-
return {
|
|
44
|
-
key,
|
|
45
|
-
value,
|
|
46
|
-
target: ["production", "preview", "development"],
|
|
47
|
-
type: "plain"
|
|
48
|
-
};
|
|
49
|
-
});
|
|
50
|
-
try {
|
|
51
|
-
const projectId = this.getProjectId({ dir: outputDirectory });
|
|
52
|
-
const teamId = await this.getTeamId();
|
|
53
|
-
const response = await fetch(
|
|
54
|
-
`https://api.vercel.com/v10/projects/${projectId}/env?teamId=${teamId}&upsert=true`,
|
|
55
|
-
{
|
|
56
|
-
method: "POST",
|
|
57
|
-
headers: {
|
|
58
|
-
Authorization: `Bearer ${this.token}`,
|
|
59
|
-
"Content-Type": "application/json"
|
|
60
|
-
},
|
|
61
|
-
body: JSON.stringify(vercelEnvVars)
|
|
62
|
-
}
|
|
63
|
-
);
|
|
64
|
-
if (!response.ok) {
|
|
65
|
-
const error = await response.json();
|
|
66
|
-
throw new Error(`Failed to sync environment variables: ${error.message}`);
|
|
67
|
-
}
|
|
68
|
-
console.log("\u2713 Successfully synced environment variables");
|
|
69
|
-
} catch (error) {
|
|
70
|
-
if (error instanceof Error) {
|
|
71
|
-
console.error("Failed to sync environment variables:", error.message);
|
|
72
|
-
} else {
|
|
73
|
-
console.error("Failed to sync environment variables:", error);
|
|
74
|
-
}
|
|
75
|
-
throw error;
|
|
76
|
-
}
|
|
12
|
+
this.outputDir = join(".vercel", "output", "functions", "index.func");
|
|
13
|
+
this.vcConfigOverrides = { ...options };
|
|
77
14
|
}
|
|
78
15
|
async prepare(outputDirectory) {
|
|
79
16
|
await super.prepare(outputDirectory);
|
|
17
|
+
this.writeVercelJSON(join(outputDirectory, this.outputDir, "..", ".."));
|
|
80
18
|
}
|
|
81
19
|
getEntry() {
|
|
82
20
|
return `
|
|
83
21
|
import { handle } from 'hono/vercel'
|
|
84
22
|
import { mastra } from '#mastra';
|
|
85
|
-
import { createHonoServer } from '#server';
|
|
23
|
+
import { createHonoServer, getToolExports } from '#server';
|
|
24
|
+
import { tools } from '#tools';
|
|
86
25
|
import { evaluate } from '@mastra/core/eval';
|
|
87
26
|
import { AvailableHooks, registerHook } from '@mastra/core/hooks';
|
|
88
27
|
import { TABLE_EVALS } from '@mastra/core/storage';
|
|
28
|
+
import { scoreTracesWorkflow } from '@mastra/core/scores/scoreTraces';
|
|
89
29
|
import { checkEvalStorageFields } from '@mastra/core/utils';
|
|
90
30
|
|
|
91
31
|
registerHook(AvailableHooks.ON_GENERATION, ({ input, output, metric, runId, agentName, instructions }) => {
|
|
@@ -101,8 +41,7 @@ registerHook(AvailableHooks.ON_GENERATION, ({ input, output, metric, runId, agen
|
|
|
101
41
|
});
|
|
102
42
|
|
|
103
43
|
if (mastra.getStorage()) {
|
|
104
|
-
|
|
105
|
-
mastra.getStorage().init();
|
|
44
|
+
mastra.__registerInternalWorkflow(scoreTracesWorkflow);
|
|
106
45
|
}
|
|
107
46
|
|
|
108
47
|
registerHook(AvailableHooks.ON_EVALUATION, async traceObject => {
|
|
@@ -131,79 +70,72 @@ registerHook(AvailableHooks.ON_EVALUATION, async traceObject => {
|
|
|
131
70
|
}
|
|
132
71
|
});
|
|
133
72
|
|
|
134
|
-
const app = await createHonoServer(mastra);
|
|
73
|
+
const app = await createHonoServer(mastra, { tools: getToolExports(tools) });
|
|
135
74
|
|
|
136
75
|
export const GET = handle(app);
|
|
137
76
|
export const POST = handle(app);
|
|
77
|
+
export const PUT = handle(app);
|
|
78
|
+
export const DELETE = handle(app);
|
|
79
|
+
export const PATCH = handle(app);
|
|
80
|
+
export const OPTIONS = handle(app);
|
|
81
|
+
export const HEAD = handle(app);
|
|
138
82
|
`;
|
|
139
83
|
}
|
|
140
|
-
writeVercelJSON(outputDirectory
|
|
84
|
+
writeVercelJSON(outputDirectory) {
|
|
141
85
|
writeFileSync(
|
|
142
|
-
join(outputDirectory,
|
|
143
|
-
JSON.stringify(
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
}
|
|
153
|
-
],
|
|
154
|
-
routes: [
|
|
155
|
-
{
|
|
156
|
-
src: "/(.*)",
|
|
157
|
-
dest: "index.mjs"
|
|
158
|
-
}
|
|
159
|
-
]
|
|
160
|
-
},
|
|
161
|
-
null,
|
|
162
|
-
2
|
|
163
|
-
)
|
|
86
|
+
join(outputDirectory, "config.json"),
|
|
87
|
+
JSON.stringify({
|
|
88
|
+
version: 3,
|
|
89
|
+
routes: [
|
|
90
|
+
{
|
|
91
|
+
src: "/(.*)",
|
|
92
|
+
dest: "/"
|
|
93
|
+
}
|
|
94
|
+
]
|
|
95
|
+
})
|
|
164
96
|
);
|
|
165
97
|
}
|
|
166
|
-
async bundle(entryFile, outputDirectory, toolsPaths) {
|
|
167
|
-
const result = await this._bundle(
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
(
|
|
98
|
+
async bundle(entryFile, outputDirectory, { toolsPaths, projectRoot }) {
|
|
99
|
+
const result = await this._bundle(
|
|
100
|
+
this.getEntry(),
|
|
101
|
+
entryFile,
|
|
102
|
+
{ outputDirectory, projectRoot },
|
|
103
|
+
toolsPaths,
|
|
104
|
+
join(outputDirectory, this.outputDir)
|
|
173
105
|
);
|
|
174
|
-
|
|
106
|
+
const nodeVersion = process.version?.split(".")?.[0]?.replace("v", "") ?? "22";
|
|
107
|
+
const vcConfig = {
|
|
108
|
+
handler: "index.mjs",
|
|
109
|
+
launcherType: "Nodejs",
|
|
110
|
+
runtime: `nodejs${nodeVersion}.x`,
|
|
111
|
+
shouldAddHelpers: true
|
|
112
|
+
};
|
|
113
|
+
const { maxDuration, memory, regions } = this.vcConfigOverrides;
|
|
114
|
+
if (typeof maxDuration === "number") vcConfig.maxDuration = maxDuration;
|
|
115
|
+
if (typeof memory === "number") vcConfig.memory = memory;
|
|
116
|
+
if (Array.isArray(regions) && regions.length > 0) vcConfig.regions = regions;
|
|
117
|
+
writeFileSync(join(outputDirectory, this.outputDir, ".vc-config.json"), JSON.stringify(vcConfig, null, 2));
|
|
118
|
+
await move(join(outputDirectory, ".vercel", "output"), join(process.cwd(), ".vercel", "output"), {
|
|
119
|
+
overwrite: true
|
|
120
|
+
});
|
|
175
121
|
return result;
|
|
176
122
|
}
|
|
177
|
-
async deploy(
|
|
178
|
-
|
|
179
|
-
const commandArgs = [
|
|
180
|
-
"--scope",
|
|
181
|
-
this.teamSlug,
|
|
182
|
-
"--cwd",
|
|
183
|
-
join(outputDirectory, this.outputDir),
|
|
184
|
-
"--token",
|
|
185
|
-
this.token,
|
|
186
|
-
"deploy",
|
|
187
|
-
"--yes",
|
|
188
|
-
...this.projectName ? ["--name", this.projectName] : []
|
|
189
|
-
];
|
|
190
|
-
child_process.execSync(`npx vercel ${commandArgs.join(" ")}`, {
|
|
191
|
-
cwd: join(outputDirectory, this.outputDir),
|
|
192
|
-
env: {
|
|
193
|
-
PATH: process.env.PATH
|
|
194
|
-
},
|
|
195
|
-
stdio: "inherit"
|
|
196
|
-
});
|
|
197
|
-
this.logger.info("Deployment started on Vercel. You can wait for it to finish or exit this command.");
|
|
198
|
-
if (envVars.size > 0) {
|
|
199
|
-
await this.syncEnv(envVars, { outputDirectory });
|
|
200
|
-
} else {
|
|
201
|
-
this.logger.info("\nAdd your ENV vars to .env or your vercel dashboard.\n");
|
|
202
|
-
}
|
|
123
|
+
async deploy() {
|
|
124
|
+
this.logger?.info("Deploying to Vercel is deprecated. Please use the Vercel dashboard to deploy.");
|
|
203
125
|
}
|
|
204
126
|
async lint(entryFile, outputDirectory, toolsPaths) {
|
|
205
127
|
await super.lint(entryFile, outputDirectory, toolsPaths);
|
|
128
|
+
const hasLibsql = await this.deps.checkDependencies(["@mastra/libsql"]) === `ok`;
|
|
129
|
+
if (hasLibsql) {
|
|
130
|
+
this.logger.error(
|
|
131
|
+
`Vercel Deployer does not support @libsql/client(which may have been installed by @mastra/libsql) as a dependency.
|
|
132
|
+
Use other Mastra Storage options instead e.g @mastra/pg`
|
|
133
|
+
);
|
|
134
|
+
process.exit(1);
|
|
135
|
+
}
|
|
206
136
|
}
|
|
207
137
|
};
|
|
208
138
|
|
|
209
139
|
export { VercelDeployer };
|
|
140
|
+
//# sourceMappingURL=index.js.map
|
|
141
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"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","file":"index.js","sourcesContent":["import { writeFileSync } from 'fs';\nimport { join } from 'path';\nimport process from 'process';\nimport { Deployer } from '@mastra/deployer';\nimport { move } from 'fs-extra/esm';\nimport type { VcConfig, VcConfigOverrides, VercelDeployerOptions } from './types';\n\nexport class VercelDeployer extends Deployer {\n private vcConfigOverrides: VcConfigOverrides = {};\n\n constructor(options: VercelDeployerOptions = {}) {\n super({ name: 'VERCEL' });\n this.outputDir = join('.vercel', 'output', 'functions', 'index.func');\n\n // Store all overrides centrally\n this.vcConfigOverrides = { ...options };\n }\n\n async prepare(outputDirectory: string): Promise<void> {\n await super.prepare(outputDirectory);\n\n this.writeVercelJSON(join(outputDirectory, this.outputDir, '..', '..'));\n }\n\n private getEntry(): string {\n return `\nimport { handle } from 'hono/vercel'\nimport { mastra } from '#mastra';\nimport { createHonoServer, getToolExports } from '#server';\nimport { tools } from '#tools';\nimport { evaluate } from '@mastra/core/eval';\nimport { AvailableHooks, registerHook } from '@mastra/core/hooks';\nimport { TABLE_EVALS } from '@mastra/core/storage';\nimport { scoreTracesWorkflow } from '@mastra/core/scores/scoreTraces';\nimport { checkEvalStorageFields } from '@mastra/core/utils';\n\nregisterHook(AvailableHooks.ON_GENERATION, ({ input, output, metric, runId, agentName, instructions }) => {\n evaluate({\n agentName,\n input,\n metric,\n output,\n runId,\n globalRunId: runId,\n instructions,\n });\n});\n\nif (mastra.getStorage()) {\n mastra.__registerInternalWorkflow(scoreTracesWorkflow);\n}\n\nregisterHook(AvailableHooks.ON_EVALUATION, async traceObject => {\n const storage = mastra.getStorage();\n if (storage) {\n // Check for required fields\n const logger = mastra?.getLogger();\n const areFieldsValid = checkEvalStorageFields(traceObject, logger);\n if (!areFieldsValid) return;\n\n await storage.insert({\n tableName: TABLE_EVALS,\n record: {\n input: traceObject.input,\n output: traceObject.output,\n result: JSON.stringify(traceObject.result || {}),\n agent_name: traceObject.agentName,\n metric_name: traceObject.metricName,\n instructions: traceObject.instructions,\n test_info: null,\n global_run_id: traceObject.globalRunId,\n run_id: traceObject.runId,\n created_at: new Date().toISOString(),\n },\n });\n }\n});\n\nconst app = await createHonoServer(mastra, { tools: getToolExports(tools) });\n\nexport const GET = handle(app);\nexport const POST = handle(app);\nexport const PUT = handle(app);\nexport const DELETE = handle(app);\nexport const PATCH = handle(app);\nexport const OPTIONS = handle(app);\nexport const HEAD = handle(app);\n`;\n }\n\n private writeVercelJSON(outputDirectory: string) {\n writeFileSync(\n join(outputDirectory, 'config.json'),\n JSON.stringify({\n version: 3,\n routes: [\n {\n src: '/(.*)',\n dest: '/',\n },\n ],\n }),\n );\n }\n\n async bundle(\n entryFile: string,\n outputDirectory: string,\n { toolsPaths, projectRoot }: { toolsPaths: (string | string[])[]; projectRoot: string },\n ): Promise<void> {\n const result = await this._bundle(\n this.getEntry(),\n entryFile,\n { outputDirectory, projectRoot },\n toolsPaths,\n join(outputDirectory, this.outputDir),\n );\n\n const nodeVersion = process.version?.split('.')?.[0]?.replace('v', '') ?? '22';\n\n const vcConfig: VcConfig = {\n handler: 'index.mjs',\n launcherType: 'Nodejs',\n runtime: `nodejs${nodeVersion}.x`,\n shouldAddHelpers: true,\n };\n\n // Merge supported overrides\n const { maxDuration, memory, regions } = this.vcConfigOverrides;\n if (typeof maxDuration === 'number') vcConfig.maxDuration = maxDuration;\n if (typeof memory === 'number') vcConfig.memory = memory;\n if (Array.isArray(regions) && regions.length > 0) vcConfig.regions = regions;\n\n writeFileSync(join(outputDirectory, this.outputDir, '.vc-config.json'), JSON.stringify(vcConfig, null, 2));\n\n await move(join(outputDirectory, '.vercel', 'output'), join(process.cwd(), '.vercel', 'output'), {\n overwrite: true,\n });\n\n return result;\n }\n\n async deploy(): Promise<void> {\n this.logger?.info('Deploying to Vercel is deprecated. Please use the Vercel dashboard to deploy.');\n }\n\n async lint(entryFile: string, outputDirectory: string, toolsPaths: (string | string[])[]): Promise<void> {\n await super.lint(entryFile, outputDirectory, toolsPaths);\n\n const hasLibsql = (await this.deps.checkDependencies(['@mastra/libsql'])) === `ok`;\n\n if (hasLibsql) {\n this.logger.error(\n `Vercel Deployer does not support @libsql/client(which may have been installed by @mastra/libsql) as a dependency. \n\t\t\t\tUse other Mastra Storage options instead e.g @mastra/pg`,\n );\n process.exit(1);\n }\n }\n}\n"]}
|