@mastra/deployer-vercel 0.0.1-alpha.1 → 0.0.1-alpha.12

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,75 @@
1
1
  # @mastra/deployer-vercel
2
2
 
3
+ ## 0.0.1-alpha.12
4
+
5
+ ### Patch Changes
6
+
7
+ - 0d5a03d: Vector store modules
8
+
9
+ ## 0.0.1-alpha.11
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [b425845]
14
+ - @mastra/deployer@0.0.1-alpha.8
15
+
16
+ ## 0.0.1-alpha.10
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies [1944807]
21
+ - Updated dependencies [9ade36e]
22
+ - @mastra/deployer@0.0.1-alpha.7
23
+ - @mastra/core@0.1.27-alpha.69
24
+
25
+ ## 0.0.1-alpha.9
26
+
27
+ ### Patch Changes
28
+
29
+ - Updated dependencies [291fe57]
30
+ - Updated dependencies [1a41fbf]
31
+ - @mastra/deployer@0.0.1-alpha.6
32
+
33
+ ## 0.0.1-alpha.8
34
+
35
+ ### Patch Changes
36
+
37
+ - Updated dependencies [0be7181]
38
+ - Updated dependencies [0be7181]
39
+ - @mastra/core@0.1.27-alpha.68
40
+ - @mastra/deployer@0.0.1-alpha.5
41
+
42
+ ## 0.0.1-alpha.7
43
+
44
+ ### Patch Changes
45
+
46
+ - Updated dependencies [7babd5c]
47
+ - @mastra/deployer@0.0.1-alpha.4
48
+
49
+ ## 0.0.1-alpha.6
50
+
51
+ ### Patch Changes
52
+
53
+ - Updated dependencies [c8ff2f5]
54
+ - Updated dependencies [a291824]
55
+ - @mastra/core@0.1.27-alpha.67
56
+ - @mastra/deployer@0.0.1-alpha.3
57
+
58
+ ## 0.0.1-alpha.5
59
+
60
+ ### Patch Changes
61
+
62
+ - 88600bc: Deployer fixes
63
+
64
+ ## 0.0.1-alpha.4
65
+
66
+ ### Patch Changes
67
+
68
+ - a9b5ddf: Publish new versions
69
+ - Updated dependencies [a9b5ddf]
70
+ - Updated dependencies [72c280b]
71
+ - @mastra/deployer@0.0.1-alpha.2
72
+
3
73
  ## 0.0.1-alpha.0
4
74
 
5
75
  ### Patch Changes
@@ -419,6 +419,7 @@ var VercelDeployer = /*#__PURE__*/function (_MastraDeployer) {
419
419
  });
420
420
  fs.writeFileSync(path.join(dir, 'vercel.json'), JSON.stringify({
421
421
  version: 2,
422
+ installCommand: 'npm install --omit=dev',
422
423
  builds: [{
423
424
  src: 'index.mjs',
424
425
  use: '@vercel/node',
@@ -542,8 +543,7 @@ var VercelDeployer = /*#__PURE__*/function (_MastraDeployer) {
542
543
  commandArgs.push('--env', envVar);
543
544
  }
544
545
  // Run the Vercel deploy command
545
- // console.log('Running command:', 'vercel', commandArgs.join(' '));
546
- child_process__namespace.execSync("vercel " + commandArgs + ".join(' ')", {
546
+ child_process__namespace.execSync("vercel " + commandArgs.join(' '), {
547
547
  cwd: dir,
548
548
  env: _extends({}, this.env, {
549
549
  PATH: process.env.PATH
@@ -1 +1 @@
1
- {"version":3,"file":"deployer-vercel.cjs.development.js","sources":["../src/index.ts"],"sourcesContent":["import { MastraDeployer } from '@mastra/core';\nimport * as child_process from 'child_process';\nimport { readFileSync, writeFileSync } from 'fs';\nimport { join } from 'path';\n\ninterface EnvVar {\n key: string;\n value: string;\n target: ('production' | 'preview' | 'development')[];\n type: 'plain' | 'secret';\n}\n\ninterface VercelError {\n message: string;\n code: string;\n}\n\nexport class VercelDeployer extends MastraDeployer {\n constructor({ scope, env, projectName }: { env?: Record<string, any>; scope: string; projectName: string }) {\n super({ scope, env, projectName });\n }\n writeFiles({ dir }: { dir: string }): void {\n this.writeIndex({ dir });\n\n writeFileSync(\n join(dir, 'vercel.json'),\n JSON.stringify(\n {\n version: 2,\n builds: [\n {\n src: 'index.mjs',\n use: '@vercel/node',\n config: { includeFiles: ['**'] },\n },\n ],\n routes: [\n {\n src: '/(.*)',\n dest: 'index.mjs',\n },\n ],\n },\n null,\n 2,\n ),\n );\n }\n\n private getProjectId({ dir }: { dir: string }): string {\n const projectJsonPath = join(dir, '.vercel', 'project.json');\n try {\n const projectJson = JSON.parse(readFileSync(projectJsonPath, 'utf-8'));\n return projectJson.projectId;\n } catch (error) {\n throw new Error('Could not find project ID. Make sure the project has been deployed first.');\n }\n }\n\n async syncEnv({ scope, dir, token }: { token: string; dir: string; scope: string }) {\n const envFiles = this.getEnvFiles();\n const envVars: string[] = [];\n\n for (const file of envFiles) {\n const vars = this.parseEnvFile(file);\n envVars.push(...vars);\n }\n\n console.log('Syncing environment variables...');\n\n // Transform env vars into the format expected by Vercel API\n const vercelEnvVars: EnvVar[] = envVars.map(envVar => {\n const [key, value] = envVar.split('=');\n if (!key || !value) {\n throw new Error(`Invalid environment variable format: ${envVar}`);\n }\n return {\n key,\n value,\n target: ['production', 'preview', 'development'],\n type: 'plain',\n };\n });\n\n try {\n const projectId = this.getProjectId({ dir });\n\n const response = await fetch(`https://api.vercel.com/v10/projects/${projectId}/env?teamId=${scope}&upsert=true`, {\n method: 'POST',\n headers: {\n Authorization: `Bearer ${token}`,\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify(vercelEnvVars),\n });\n\n if (!response.ok) {\n const error = (await response.json()) as VercelError;\n throw new Error(`Failed to sync environment variables: ${error.message}`);\n }\n\n console.log('✓ Successfully synced environment variables');\n } catch (error) {\n if (error instanceof Error) {\n console.error('Failed to sync environment variables:', error.message);\n } else {\n console.error('Failed to sync environment variables:', error);\n }\n throw error;\n }\n }\n\n async deploy({ dir, token }: { dir: string; token: string }): Promise<void> {\n // Get env vars for initial deployment\n const envFiles = this.getEnvFiles();\n const envVars: string[] = [];\n\n for (const file of envFiles) {\n const vars = this.parseEnvFile(file);\n envVars.push(...vars);\n }\n\n // Create the command array with base arguments\n const commandArgs = [\n '--scope',\n this.scope as string,\n '--cwd',\n dir,\n 'deploy',\n '--token',\n token,\n '--yes',\n ...(this.projectName ? ['--name', this.projectName] : []),\n ];\n\n // Add env vars to initial deployment\n for (const envVar of envVars) {\n commandArgs.push('--env', envVar);\n }\n\n // Run the Vercel deploy command\n // console.log('Running command:', 'vercel', commandArgs.join(' '));\n child_process.execSync(`vercel ${commandArgs}.join(' ')`, {\n cwd: dir,\n env: {\n ...this.env,\n PATH: process.env.PATH,\n },\n stdio: 'inherit',\n });\n\n console.log('Deployment started on Vercel. You can wait for it to finish or exit this command.');\n\n if (envVars.length > 0) {\n // Sync environment variables for future deployments\n await this.syncEnv({ scope: this.scope, dir, token });\n } else {\n console.log('\\nAdd your ENV vars to .env or your vercel dashboard.\\n');\n }\n }\n\n writeIndex({ dir }: { dir: string }): void {\n writeFileSync(\n join(dir, 'index.mjs'),\n `\n import { handle } from 'hono/vercel'\n import { app } from './hono.mjs';\n export const GET = handle(app);\n export const POST = handle(app);\n `,\n );\n }\n}\n"],"names":["VercelDeployer","_MastraDeployer","_ref","scope","env","projectName","call","_inheritsLoose","_proto","prototype","writeFiles","_ref2","dir","writeIndex","writeFileSync","join","JSON","stringify","version","builds","src","use","config","includeFiles","routes","dest","getProjectId","_ref3","projectJsonPath","projectJson","parse","readFileSync","projectId","error","Error","syncEnv","_syncEnv","_asyncToGenerator","_regeneratorRuntime","mark","_callee","_ref4","token","envFiles","envVars","_iterator","_step","file","vars","vercelEnvVars","response","wrap","_callee$","_context","prev","next","getEnvFiles","_createForOfIteratorHelperLoose","done","value","parseEnvFile","push","apply","console","log","map","envVar","_envVar$split","split","key","target","type","fetch","method","headers","Authorization","body","sent","ok","json","message","t0","stop","_x","arguments","deploy","_deploy","_callee2","_ref5","_iterator2","_step2","commandArgs","_i","_envVars","_callee2$","_context2","concat","length","child_process","execSync","cwd","_extends","PATH","process","stdio","_x2","_ref6","MastraDeployer"],"mappings":"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"}
1
+ {"version":3,"file":"deployer-vercel.cjs.development.js","sources":["../src/index.ts"],"sourcesContent":["import { MastraDeployer } from '@mastra/core';\nimport * as child_process from 'child_process';\nimport { readFileSync, writeFileSync } from 'fs';\nimport { join } from 'path';\n\ninterface EnvVar {\n key: string;\n value: string;\n target: ('production' | 'preview' | 'development')[];\n type: 'plain' | 'secret';\n}\n\ninterface VercelError {\n message: string;\n code: string;\n}\n\nexport class VercelDeployer extends MastraDeployer {\n constructor({ scope, env, projectName }: { env?: Record<string, any>; scope: string; projectName: string }) {\n super({ scope, env, projectName });\n }\n writeFiles({ dir }: { dir: string }): void {\n this.writeIndex({ dir });\n\n writeFileSync(\n join(dir, 'vercel.json'),\n JSON.stringify(\n {\n version: 2,\n installCommand: 'npm install --omit=dev',\n builds: [\n {\n src: 'index.mjs',\n use: '@vercel/node',\n config: { includeFiles: ['**'] },\n },\n ],\n routes: [\n {\n src: '/(.*)',\n dest: 'index.mjs',\n },\n ],\n },\n null,\n 2,\n ),\n );\n }\n\n private getProjectId({ dir }: { dir: string }): string {\n const projectJsonPath = join(dir, '.vercel', 'project.json');\n try {\n const projectJson = JSON.parse(readFileSync(projectJsonPath, 'utf-8'));\n return projectJson.projectId;\n } catch (error) {\n throw new Error('Could not find project ID. Make sure the project has been deployed first.');\n }\n }\n\n async syncEnv({ scope, dir, token }: { token: string; dir: string; scope: string }) {\n const envFiles = this.getEnvFiles();\n const envVars: string[] = [];\n\n for (const file of envFiles) {\n const vars = this.parseEnvFile(file);\n envVars.push(...vars);\n }\n\n console.log('Syncing environment variables...');\n\n // Transform env vars into the format expected by Vercel API\n const vercelEnvVars: EnvVar[] = envVars.map(envVar => {\n const [key, value] = envVar.split('=');\n if (!key || !value) {\n throw new Error(`Invalid environment variable format: ${envVar}`);\n }\n return {\n key,\n value,\n target: ['production', 'preview', 'development'],\n type: 'plain',\n };\n });\n\n try {\n const projectId = this.getProjectId({ dir });\n\n const response = await fetch(`https://api.vercel.com/v10/projects/${projectId}/env?teamId=${scope}&upsert=true`, {\n method: 'POST',\n headers: {\n Authorization: `Bearer ${token}`,\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify(vercelEnvVars),\n });\n\n if (!response.ok) {\n const error = (await response.json()) as VercelError;\n throw new Error(`Failed to sync environment variables: ${error.message}`);\n }\n\n console.log('✓ Successfully synced environment variables');\n } catch (error) {\n if (error instanceof Error) {\n console.error('Failed to sync environment variables:', error.message);\n } else {\n console.error('Failed to sync environment variables:', error);\n }\n throw error;\n }\n }\n\n async deploy({ dir, token }: { dir: string; token: string }): Promise<void> {\n // Get env vars for initial deployment\n const envFiles = this.getEnvFiles();\n const envVars: string[] = [];\n\n for (const file of envFiles) {\n const vars = this.parseEnvFile(file);\n envVars.push(...vars);\n }\n\n // Create the command array with base arguments\n const commandArgs = [\n '--scope',\n this.scope as string,\n '--cwd',\n dir,\n 'deploy',\n '--token',\n token,\n '--yes',\n ...(this.projectName ? ['--name', this.projectName] : []),\n ];\n\n // Add env vars to initial deployment\n for (const envVar of envVars) {\n commandArgs.push('--env', envVar);\n }\n\n // Run the Vercel deploy command\n child_process.execSync(`vercel ${commandArgs.join(' ')}`, {\n cwd: dir,\n env: {\n ...this.env,\n PATH: process.env.PATH,\n },\n stdio: 'inherit',\n });\n\n console.log('Deployment started on Vercel. You can wait for it to finish or exit this command.');\n\n if (envVars.length > 0) {\n // Sync environment variables for future deployments\n await this.syncEnv({ scope: this.scope, dir, token });\n } else {\n console.log('\\nAdd your ENV vars to .env or your vercel dashboard.\\n');\n }\n }\n\n writeIndex({ dir }: { dir: string }): void {\n writeFileSync(\n join(dir, 'index.mjs'),\n `\n import { handle } from 'hono/vercel'\n import { app } from './hono.mjs';\n export const GET = handle(app);\n export const POST = handle(app);\n `,\n );\n }\n}\n"],"names":["VercelDeployer","_MastraDeployer","_ref","scope","env","projectName","call","_inheritsLoose","_proto","prototype","writeFiles","_ref2","dir","writeIndex","writeFileSync","join","JSON","stringify","version","installCommand","builds","src","use","config","includeFiles","routes","dest","getProjectId","_ref3","projectJsonPath","projectJson","parse","readFileSync","projectId","error","Error","syncEnv","_syncEnv","_asyncToGenerator","_regeneratorRuntime","mark","_callee","_ref4","token","envFiles","envVars","_iterator","_step","file","vars","vercelEnvVars","response","wrap","_callee$","_context","prev","next","getEnvFiles","_createForOfIteratorHelperLoose","done","value","parseEnvFile","push","apply","console","log","map","envVar","_envVar$split","split","key","target","type","fetch","method","headers","Authorization","body","sent","ok","json","message","t0","stop","_x","arguments","deploy","_deploy","_callee2","_ref5","_iterator2","_step2","commandArgs","_i","_envVars","_callee2$","_context2","concat","length","child_process","execSync","cwd","_extends","PATH","process","stdio","_x2","_ref6","MastraDeployer"],"mappings":"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"}
@@ -1,2 +1,2 @@
1
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var t=require("@mastra/core"),e=require("child_process"),r=require("fs"),n=require("path");function o(t){var e=Object.create(null);return t&&Object.keys(t).forEach((function(r){if("default"!==r){var n=Object.getOwnPropertyDescriptor(t,r);Object.defineProperty(e,r,n.get?n:{enumerable:!0,get:function(){return t[r]}})}})),e.default=t,e}var i=o(e);function a(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function c(t,e,r,n,o,i,a){try{var c=t[i](a),u=c.value}catch(t){return void r(t)}c.done?e(u):Promise.resolve(u).then(n,o)}function u(t){return function(){var e=this,r=arguments;return new Promise((function(n,o){var i=t.apply(e,r);function a(t){c(i,n,o,a,u,"next",t)}function u(t){c(i,n,o,a,u,"throw",t)}a(void 0)}))}}function s(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(r)return(r=r.call(t)).next.bind(r);if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return a(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?a(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0;return function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function l(){return l=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var n in r)({}).hasOwnProperty.call(r,n)&&(t[n]=r[n])}return t},l.apply(null,arguments)}function f(){f=function(){return e};var t,e={},r=Object.prototype,n=r.hasOwnProperty,o=Object.defineProperty||function(t,e,r){t[e]=r.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",c=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function s(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{s({},"")}catch(t){s=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var i=Object.create((e&&e.prototype instanceof g?e:g).prototype),a=new N(n||[]);return o(i,"_invoke",{value:S(t,r,a)}),i}function h(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=l;var p="suspendedStart",v="suspendedYield",y="executing",d="completed",m={};function g(){}function w(){}function b(){}var j={};s(j,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(I([])));E&&E!==r&&n.call(E,a)&&(j=E);var O=b.prototype=g.prototype=Object.create(j);function L(t){["next","throw","return"].forEach((function(e){s(t,e,(function(t){return this._invoke(e,t)}))}))}function k(t,e){function r(o,i,a,c){var u=h(t[o],t,i);if("throw"!==u.type){var s=u.arg,l=s.value;return l&&"object"==typeof l&&n.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,a,c)}),(function(t){r("throw",t,a,c)})):e.resolve(l).then((function(t){s.value=t,a(s)}),(function(t){return r("throw",t,a,c)}))}c(u.arg)}var i;o(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return i=i?i.then(o,o):o()}})}function S(e,r,n){var o=p;return function(i,a){if(o===y)throw Error("Generator is already running");if(o===d){if("throw"===i)throw a;return{value:t,done:!0}}for(n.method=i,n.arg=a;;){var c=n.delegate;if(c){var u=_(c,n);if(u){if(u===m)continue;return u}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===p)throw o=d,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=y;var s=h(e,r,n);if("normal"===s.type){if(o=n.done?d:v,s.arg===m)continue;return{value:s.arg,done:n.done}}"throw"===s.type&&(o=d,n.method="throw",n.arg=s.arg)}}}function _(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,_(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),m;var i=h(o,e.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,m;var a=i.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,m):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,m)}function P(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function F(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function N(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function I(e){if(e||""===e){var r=e[a];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function r(){for(;++o<e.length;)if(n.call(e,o))return r.value=e[o],r.done=!1,r;return r.value=t,r.done=!0,r};return i.next=i}}throw new TypeError(typeof e+" is not iterable")}return w.prototype=b,o(O,"constructor",{value:b,configurable:!0}),o(b,"constructor",{value:w,configurable:!0}),w.displayName=s(b,u,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===w||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,b):(t.__proto__=b,s(t,u,"GeneratorFunction")),t.prototype=Object.create(O),t},e.awrap=function(t){return{__await:t}},L(k.prototype),s(k.prototype,c,(function(){return this})),e.AsyncIterator=k,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new k(l(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},L(O),s(O,u,"Generator"),s(O,a,(function(){return this})),s(O,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=I,N.prototype={constructor:N,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(F),!e)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function o(n,o){return c.type="throw",c.arg=e,r.next=n,o&&(r.method="next",r.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],c=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var u=n.call(a,"catchLoc"),s=n.call(a,"finallyLoc");if(u&&s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(u){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!s)throw Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,m):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),m},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),F(r),m}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;F(r)}return o}}throw Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:I(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),m}},e}function h(t,e){return h=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},h(t,e)}exports.VercelDeployer=function(t){function e(e){return t.call(this,{scope:e.scope,env:e.env,projectName:e.projectName})||this}var o,a;a=t,(o=e).prototype=Object.create(a.prototype),o.prototype.constructor=o,h(o,a);var c=e.prototype;return c.writeFiles=function(t){var e=t.dir;this.writeIndex({dir:e}),r.writeFileSync(n.join(e,"vercel.json"),JSON.stringify({version:2,builds:[{src:"index.mjs",use:"@vercel/node",config:{includeFiles:["**"]}}],routes:[{src:"/(.*)",dest:"index.mjs"}]},null,2))},c.getProjectId=function(t){var e=n.join(t.dir,".vercel","project.json");try{return JSON.parse(r.readFileSync(e,"utf-8")).projectId}catch(t){throw new Error("Could not find project ID. Make sure the project has been deployed first.")}},c.syncEnv=function(){var t=u(f().mark((function t(e){var r,n,o,i,a,c,u,l,h,p,v;return f().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:for(r=e.scope,n=e.dir,o=e.token,i=this.getEnvFiles(),a=[],c=s(i);!(u=c()).done;)l=this.parseEnvFile(u.value),a.push.apply(a,l);return console.log("Syncing environment variables..."),h=a.map((function(t){var e=t.split("="),r=e[0],n=e[1];if(!r||!n)throw new Error("Invalid environment variable format: "+t);return{key:r,value:n,target:["production","preview","development"],type:"plain"}})),t.prev=6,p=this.getProjectId({dir:n}),t.next=10,fetch("https://api.vercel.com/v10/projects/"+p+"/env?teamId="+r+"&upsert=true",{method:"POST",headers:{Authorization:"Bearer "+o,"Content-Type":"application/json"},body:JSON.stringify(h)});case 10:if((v=t.sent).ok){t.next=16;break}return t.next=14,v.json();case 14:throw new Error("Failed to sync environment variables: "+t.sent.message);case 16:console.log("✓ Successfully synced environment variables"),t.next=23;break;case 19:throw t.prev=19,t.t0=t.catch(6),t.t0 instanceof Error?console.error("Failed to sync environment variables:",t.t0.message):console.error("Failed to sync environment variables:",t.t0),t.t0;case 23:case"end":return t.stop()}}),t,this,[[6,19]])})));return function(e){return t.apply(this,arguments)}}(),c.deploy=function(){var t=u(f().mark((function t(e){var r,n,o,a,c,u,h,p,v,y;return f().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:for(r=e.dir,n=e.token,o=this.getEnvFiles(),a=[],c=s(o);!(u=c()).done;)h=this.parseEnvFile(u.value),a.push.apply(a,h);for(p=["--scope",this.scope,"--cwd",r,"deploy","--token",n,"--yes"].concat(this.projectName?["--name",this.projectName]:[]),v=0,y=a;v<y.length;v++)p.push("--env",y[v]);if(i.execSync("vercel "+p+".join(' ')",{cwd:r,env:l({},this.env,{PATH:process.env.PATH}),stdio:"inherit"}),console.log("Deployment started on Vercel. You can wait for it to finish or exit this command."),!(a.length>0)){t.next=13;break}return t.next=11,this.syncEnv({scope:this.scope,dir:r,token:n});case 11:t.next=14;break;case 13:console.log("\nAdd your ENV vars to .env or your vercel dashboard.\n");case 14:case"end":return t.stop()}}),t,this)})));return function(e){return t.apply(this,arguments)}}(),c.writeIndex=function(t){r.writeFileSync(n.join(t.dir,"index.mjs"),"\n import { handle } from 'hono/vercel'\n import { app } from './hono.mjs';\n export const GET = handle(app);\n export const POST = handle(app);\n ")},e}(t.MastraDeployer);
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var t=require("@mastra/core"),e=require("child_process"),r=require("fs"),n=require("path");function o(t){var e=Object.create(null);return t&&Object.keys(t).forEach((function(r){if("default"!==r){var n=Object.getOwnPropertyDescriptor(t,r);Object.defineProperty(e,r,n.get?n:{enumerable:!0,get:function(){return t[r]}})}})),e.default=t,e}var i=o(e);function a(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function c(t,e,r,n,o,i,a){try{var c=t[i](a),s=c.value}catch(t){return void r(t)}c.done?e(s):Promise.resolve(s).then(n,o)}function s(t){return function(){var e=this,r=arguments;return new Promise((function(n,o){var i=t.apply(e,r);function a(t){c(i,n,o,a,s,"next",t)}function s(t){c(i,n,o,a,s,"throw",t)}a(void 0)}))}}function u(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(r)return(r=r.call(t)).next.bind(r);if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return a(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?a(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0;return function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function l(){return l=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var n in r)({}).hasOwnProperty.call(r,n)&&(t[n]=r[n])}return t},l.apply(null,arguments)}function f(){f=function(){return e};var t,e={},r=Object.prototype,n=r.hasOwnProperty,o=Object.defineProperty||function(t,e,r){t[e]=r.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",c=i.asyncIterator||"@@asyncIterator",s=i.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var i=Object.create((e&&e.prototype instanceof g?e:g).prototype),a=new N(n||[]);return o(i,"_invoke",{value:S(t,r,a)}),i}function h(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=l;var p="suspendedStart",v="suspendedYield",y="executing",d="completed",m={};function g(){}function w(){}function b(){}var j={};u(j,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(I([])));E&&E!==r&&n.call(E,a)&&(j=E);var O=b.prototype=g.prototype=Object.create(j);function L(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function k(t,e){function r(o,i,a,c){var s=h(t[o],t,i);if("throw"!==s.type){var u=s.arg,l=u.value;return l&&"object"==typeof l&&n.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,a,c)}),(function(t){r("throw",t,a,c)})):e.resolve(l).then((function(t){u.value=t,a(u)}),(function(t){return r("throw",t,a,c)}))}c(s.arg)}var i;o(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return i=i?i.then(o,o):o()}})}function S(e,r,n){var o=p;return function(i,a){if(o===y)throw Error("Generator is already running");if(o===d){if("throw"===i)throw a;return{value:t,done:!0}}for(n.method=i,n.arg=a;;){var c=n.delegate;if(c){var s=_(c,n);if(s){if(s===m)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===p)throw o=d,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=y;var u=h(e,r,n);if("normal"===u.type){if(o=n.done?d:v,u.arg===m)continue;return{value:u.arg,done:n.done}}"throw"===u.type&&(o=d,n.method="throw",n.arg=u.arg)}}}function _(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,_(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),m;var i=h(o,e.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,m;var a=i.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,m):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,m)}function P(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function F(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function N(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function I(e){if(e||""===e){var r=e[a];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function r(){for(;++o<e.length;)if(n.call(e,o))return r.value=e[o],r.done=!1,r;return r.value=t,r.done=!0,r};return i.next=i}}throw new TypeError(typeof e+" is not iterable")}return w.prototype=b,o(O,"constructor",{value:b,configurable:!0}),o(b,"constructor",{value:w,configurable:!0}),w.displayName=u(b,s,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===w||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,b):(t.__proto__=b,u(t,s,"GeneratorFunction")),t.prototype=Object.create(O),t},e.awrap=function(t){return{__await:t}},L(k.prototype),u(k.prototype,c,(function(){return this})),e.AsyncIterator=k,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new k(l(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},L(O),u(O,s,"Generator"),u(O,a,(function(){return this})),u(O,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=I,N.prototype={constructor:N,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(F),!e)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function o(n,o){return c.type="throw",c.arg=e,r.next=n,o&&(r.method="next",r.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],c=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var s=n.call(a,"catchLoc"),u=n.call(a,"finallyLoc");if(s&&u){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!u)throw Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,m):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),m},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),F(r),m}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;F(r)}return o}}throw Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:I(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),m}},e}function h(t,e){return h=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},h(t,e)}exports.VercelDeployer=function(t){function e(e){return t.call(this,{scope:e.scope,env:e.env,projectName:e.projectName})||this}var o,a;a=t,(o=e).prototype=Object.create(a.prototype),o.prototype.constructor=o,h(o,a);var c=e.prototype;return c.writeFiles=function(t){var e=t.dir;this.writeIndex({dir:e}),r.writeFileSync(n.join(e,"vercel.json"),JSON.stringify({version:2,installCommand:"npm install --omit=dev",builds:[{src:"index.mjs",use:"@vercel/node",config:{includeFiles:["**"]}}],routes:[{src:"/(.*)",dest:"index.mjs"}]},null,2))},c.getProjectId=function(t){var e=n.join(t.dir,".vercel","project.json");try{return JSON.parse(r.readFileSync(e,"utf-8")).projectId}catch(t){throw new Error("Could not find project ID. Make sure the project has been deployed first.")}},c.syncEnv=function(){var t=s(f().mark((function t(e){var r,n,o,i,a,c,s,l,h,p,v;return f().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:for(r=e.scope,n=e.dir,o=e.token,i=this.getEnvFiles(),a=[],c=u(i);!(s=c()).done;)l=this.parseEnvFile(s.value),a.push.apply(a,l);return console.log("Syncing environment variables..."),h=a.map((function(t){var e=t.split("="),r=e[0],n=e[1];if(!r||!n)throw new Error("Invalid environment variable format: "+t);return{key:r,value:n,target:["production","preview","development"],type:"plain"}})),t.prev=6,p=this.getProjectId({dir:n}),t.next=10,fetch("https://api.vercel.com/v10/projects/"+p+"/env?teamId="+r+"&upsert=true",{method:"POST",headers:{Authorization:"Bearer "+o,"Content-Type":"application/json"},body:JSON.stringify(h)});case 10:if((v=t.sent).ok){t.next=16;break}return t.next=14,v.json();case 14:throw new Error("Failed to sync environment variables: "+t.sent.message);case 16:console.log("✓ Successfully synced environment variables"),t.next=23;break;case 19:throw t.prev=19,t.t0=t.catch(6),t.t0 instanceof Error?console.error("Failed to sync environment variables:",t.t0.message):console.error("Failed to sync environment variables:",t.t0),t.t0;case 23:case"end":return t.stop()}}),t,this,[[6,19]])})));return function(e){return t.apply(this,arguments)}}(),c.deploy=function(){var t=s(f().mark((function t(e){var r,n,o,a,c,s,h,p,v,y;return f().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:for(r=e.dir,n=e.token,o=this.getEnvFiles(),a=[],c=u(o);!(s=c()).done;)h=this.parseEnvFile(s.value),a.push.apply(a,h);for(p=["--scope",this.scope,"--cwd",r,"deploy","--token",n,"--yes"].concat(this.projectName?["--name",this.projectName]:[]),v=0,y=a;v<y.length;v++)p.push("--env",y[v]);if(i.execSync("vercel "+p.join(" "),{cwd:r,env:l({},this.env,{PATH:process.env.PATH}),stdio:"inherit"}),console.log("Deployment started on Vercel. You can wait for it to finish or exit this command."),!(a.length>0)){t.next=13;break}return t.next=11,this.syncEnv({scope:this.scope,dir:r,token:n});case 11:t.next=14;break;case 13:console.log("\nAdd your ENV vars to .env or your vercel dashboard.\n");case 14:case"end":return t.stop()}}),t,this)})));return function(e){return t.apply(this,arguments)}}(),c.writeIndex=function(t){r.writeFileSync(n.join(t.dir,"index.mjs"),"\n import { handle } from 'hono/vercel'\n import { app } from './hono.mjs';\n export const GET = handle(app);\n export const POST = handle(app);\n ")},e}(t.MastraDeployer);
2
2
  //# sourceMappingURL=deployer-vercel.cjs.production.min.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"deployer-vercel.cjs.production.min.js","sources":["../src/index.ts"],"sourcesContent":["import { MastraDeployer } from '@mastra/core';\nimport * as child_process from 'child_process';\nimport { readFileSync, writeFileSync } from 'fs';\nimport { join } from 'path';\n\ninterface EnvVar {\n key: string;\n value: string;\n target: ('production' | 'preview' | 'development')[];\n type: 'plain' | 'secret';\n}\n\ninterface VercelError {\n message: string;\n code: string;\n}\n\nexport class VercelDeployer extends MastraDeployer {\n constructor({ scope, env, projectName }: { env?: Record<string, any>; scope: string; projectName: string }) {\n super({ scope, env, projectName });\n }\n writeFiles({ dir }: { dir: string }): void {\n this.writeIndex({ dir });\n\n writeFileSync(\n join(dir, 'vercel.json'),\n JSON.stringify(\n {\n version: 2,\n builds: [\n {\n src: 'index.mjs',\n use: '@vercel/node',\n config: { includeFiles: ['**'] },\n },\n ],\n routes: [\n {\n src: '/(.*)',\n dest: 'index.mjs',\n },\n ],\n },\n null,\n 2,\n ),\n );\n }\n\n private getProjectId({ dir }: { dir: string }): string {\n const projectJsonPath = join(dir, '.vercel', 'project.json');\n try {\n const projectJson = JSON.parse(readFileSync(projectJsonPath, 'utf-8'));\n return projectJson.projectId;\n } catch (error) {\n throw new Error('Could not find project ID. Make sure the project has been deployed first.');\n }\n }\n\n async syncEnv({ scope, dir, token }: { token: string; dir: string; scope: string }) {\n const envFiles = this.getEnvFiles();\n const envVars: string[] = [];\n\n for (const file of envFiles) {\n const vars = this.parseEnvFile(file);\n envVars.push(...vars);\n }\n\n console.log('Syncing environment variables...');\n\n // Transform env vars into the format expected by Vercel API\n const vercelEnvVars: EnvVar[] = envVars.map(envVar => {\n const [key, value] = envVar.split('=');\n if (!key || !value) {\n throw new Error(`Invalid environment variable format: ${envVar}`);\n }\n return {\n key,\n value,\n target: ['production', 'preview', 'development'],\n type: 'plain',\n };\n });\n\n try {\n const projectId = this.getProjectId({ dir });\n\n const response = await fetch(`https://api.vercel.com/v10/projects/${projectId}/env?teamId=${scope}&upsert=true`, {\n method: 'POST',\n headers: {\n Authorization: `Bearer ${token}`,\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify(vercelEnvVars),\n });\n\n if (!response.ok) {\n const error = (await response.json()) as VercelError;\n throw new Error(`Failed to sync environment variables: ${error.message}`);\n }\n\n console.log('✓ Successfully synced environment variables');\n } catch (error) {\n if (error instanceof Error) {\n console.error('Failed to sync environment variables:', error.message);\n } else {\n console.error('Failed to sync environment variables:', error);\n }\n throw error;\n }\n }\n\n async deploy({ dir, token }: { dir: string; token: string }): Promise<void> {\n // Get env vars for initial deployment\n const envFiles = this.getEnvFiles();\n const envVars: string[] = [];\n\n for (const file of envFiles) {\n const vars = this.parseEnvFile(file);\n envVars.push(...vars);\n }\n\n // Create the command array with base arguments\n const commandArgs = [\n '--scope',\n this.scope as string,\n '--cwd',\n dir,\n 'deploy',\n '--token',\n token,\n '--yes',\n ...(this.projectName ? ['--name', this.projectName] : []),\n ];\n\n // Add env vars to initial deployment\n for (const envVar of envVars) {\n commandArgs.push('--env', envVar);\n }\n\n // Run the Vercel deploy command\n // console.log('Running command:', 'vercel', commandArgs.join(' '));\n child_process.execSync(`vercel ${commandArgs}.join(' ')`, {\n cwd: dir,\n env: {\n ...this.env,\n PATH: process.env.PATH,\n },\n stdio: 'inherit',\n });\n\n console.log('Deployment started on Vercel. You can wait for it to finish or exit this command.');\n\n if (envVars.length > 0) {\n // Sync environment variables for future deployments\n await this.syncEnv({ scope: this.scope, dir, token });\n } else {\n console.log('\\nAdd your ENV vars to .env or your vercel dashboard.\\n');\n }\n }\n\n writeIndex({ dir }: { dir: string }): void {\n writeFileSync(\n join(dir, 'index.mjs'),\n `\n import { handle } from 'hono/vercel'\n import { app } from './hono.mjs';\n export const GET = handle(app);\n export const POST = handle(app);\n `,\n );\n }\n}\n"],"names":["_MastraDeployer","VercelDeployer","_ref","call","this","scope","env","projectName","_proto","prototype","writeFiles","_ref2","dir","writeIndex","writeFileSync","join","JSON","stringify","version","builds","src","use","config","includeFiles","routes","dest","getProjectId","_ref3","projectJsonPath","parse","readFileSync","projectId","error","Error","syncEnv","_syncEnv","_asyncToGenerator","_regeneratorRuntime","mark","_callee","_ref4","token","envFiles","envVars","_iterator","_step","vars","vercelEnvVars","response","wrap","_context","prev","next","getEnvFiles","_createForOfIteratorHelperLoose","done","parseEnvFile","value","push","apply","console","log","map","envVar","_envVar$split","split","key","target","type","fetch","method","headers","Authorization","body","sent","ok","json","message","t0","stop","_x","arguments","deploy","_deploy","_callee2","_ref5","_iterator2","_step2","commandArgs","_i","_envVars","_context2","concat","length","child_process","execSync","cwd","_extends","PATH","process","stdio","_x2","_ref6","MastraDeployer"],"mappings":"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"}
1
+ {"version":3,"file":"deployer-vercel.cjs.production.min.js","sources":["../src/index.ts"],"sourcesContent":["import { MastraDeployer } from '@mastra/core';\nimport * as child_process from 'child_process';\nimport { readFileSync, writeFileSync } from 'fs';\nimport { join } from 'path';\n\ninterface EnvVar {\n key: string;\n value: string;\n target: ('production' | 'preview' | 'development')[];\n type: 'plain' | 'secret';\n}\n\ninterface VercelError {\n message: string;\n code: string;\n}\n\nexport class VercelDeployer extends MastraDeployer {\n constructor({ scope, env, projectName }: { env?: Record<string, any>; scope: string; projectName: string }) {\n super({ scope, env, projectName });\n }\n writeFiles({ dir }: { dir: string }): void {\n this.writeIndex({ dir });\n\n writeFileSync(\n join(dir, 'vercel.json'),\n JSON.stringify(\n {\n version: 2,\n installCommand: 'npm install --omit=dev',\n builds: [\n {\n src: 'index.mjs',\n use: '@vercel/node',\n config: { includeFiles: ['**'] },\n },\n ],\n routes: [\n {\n src: '/(.*)',\n dest: 'index.mjs',\n },\n ],\n },\n null,\n 2,\n ),\n );\n }\n\n private getProjectId({ dir }: { dir: string }): string {\n const projectJsonPath = join(dir, '.vercel', 'project.json');\n try {\n const projectJson = JSON.parse(readFileSync(projectJsonPath, 'utf-8'));\n return projectJson.projectId;\n } catch (error) {\n throw new Error('Could not find project ID. Make sure the project has been deployed first.');\n }\n }\n\n async syncEnv({ scope, dir, token }: { token: string; dir: string; scope: string }) {\n const envFiles = this.getEnvFiles();\n const envVars: string[] = [];\n\n for (const file of envFiles) {\n const vars = this.parseEnvFile(file);\n envVars.push(...vars);\n }\n\n console.log('Syncing environment variables...');\n\n // Transform env vars into the format expected by Vercel API\n const vercelEnvVars: EnvVar[] = envVars.map(envVar => {\n const [key, value] = envVar.split('=');\n if (!key || !value) {\n throw new Error(`Invalid environment variable format: ${envVar}`);\n }\n return {\n key,\n value,\n target: ['production', 'preview', 'development'],\n type: 'plain',\n };\n });\n\n try {\n const projectId = this.getProjectId({ dir });\n\n const response = await fetch(`https://api.vercel.com/v10/projects/${projectId}/env?teamId=${scope}&upsert=true`, {\n method: 'POST',\n headers: {\n Authorization: `Bearer ${token}`,\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify(vercelEnvVars),\n });\n\n if (!response.ok) {\n const error = (await response.json()) as VercelError;\n throw new Error(`Failed to sync environment variables: ${error.message}`);\n }\n\n console.log('✓ Successfully synced environment variables');\n } catch (error) {\n if (error instanceof Error) {\n console.error('Failed to sync environment variables:', error.message);\n } else {\n console.error('Failed to sync environment variables:', error);\n }\n throw error;\n }\n }\n\n async deploy({ dir, token }: { dir: string; token: string }): Promise<void> {\n // Get env vars for initial deployment\n const envFiles = this.getEnvFiles();\n const envVars: string[] = [];\n\n for (const file of envFiles) {\n const vars = this.parseEnvFile(file);\n envVars.push(...vars);\n }\n\n // Create the command array with base arguments\n const commandArgs = [\n '--scope',\n this.scope as string,\n '--cwd',\n dir,\n 'deploy',\n '--token',\n token,\n '--yes',\n ...(this.projectName ? ['--name', this.projectName] : []),\n ];\n\n // Add env vars to initial deployment\n for (const envVar of envVars) {\n commandArgs.push('--env', envVar);\n }\n\n // Run the Vercel deploy command\n child_process.execSync(`vercel ${commandArgs.join(' ')}`, {\n cwd: dir,\n env: {\n ...this.env,\n PATH: process.env.PATH,\n },\n stdio: 'inherit',\n });\n\n console.log('Deployment started on Vercel. You can wait for it to finish or exit this command.');\n\n if (envVars.length > 0) {\n // Sync environment variables for future deployments\n await this.syncEnv({ scope: this.scope, dir, token });\n } else {\n console.log('\\nAdd your ENV vars to .env or your vercel dashboard.\\n');\n }\n }\n\n writeIndex({ dir }: { dir: string }): void {\n writeFileSync(\n join(dir, 'index.mjs'),\n `\n import { handle } from 'hono/vercel'\n import { app } from './hono.mjs';\n export const GET = handle(app);\n export const POST = handle(app);\n `,\n );\n }\n}\n"],"names":["_MastraDeployer","VercelDeployer","_ref","call","this","scope","env","projectName","_proto","prototype","writeFiles","_ref2","dir","writeIndex","writeFileSync","join","JSON","stringify","version","installCommand","builds","src","use","config","includeFiles","routes","dest","getProjectId","_ref3","projectJsonPath","parse","readFileSync","projectId","error","Error","syncEnv","_syncEnv","_asyncToGenerator","_regeneratorRuntime","mark","_callee","_ref4","token","envFiles","envVars","_iterator","_step","vars","vercelEnvVars","response","wrap","_context","prev","next","getEnvFiles","_createForOfIteratorHelperLoose","done","parseEnvFile","value","push","apply","console","log","map","envVar","_envVar$split","split","key","target","type","fetch","method","headers","Authorization","body","sent","ok","json","message","t0","stop","_x","arguments","deploy","_deploy","_callee2","_ref5","_iterator2","_step2","commandArgs","_i","_envVars","_context2","concat","length","child_process","execSync","cwd","_extends","PATH","process","stdio","_x2","_ref6","MastraDeployer"],"mappings":"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"}
@@ -396,6 +396,7 @@ var VercelDeployer = /*#__PURE__*/function (_MastraDeployer) {
396
396
  });
397
397
  writeFileSync(join(dir, 'vercel.json'), JSON.stringify({
398
398
  version: 2,
399
+ installCommand: 'npm install --omit=dev',
399
400
  builds: [{
400
401
  src: 'index.mjs',
401
402
  use: '@vercel/node',
@@ -519,8 +520,7 @@ var VercelDeployer = /*#__PURE__*/function (_MastraDeployer) {
519
520
  commandArgs.push('--env', envVar);
520
521
  }
521
522
  // Run the Vercel deploy command
522
- // console.log('Running command:', 'vercel', commandArgs.join(' '));
523
- child_process.execSync("vercel " + commandArgs + ".join(' ')", {
523
+ child_process.execSync("vercel " + commandArgs.join(' '), {
524
524
  cwd: dir,
525
525
  env: _extends({}, this.env, {
526
526
  PATH: process.env.PATH
@@ -1 +1 @@
1
- {"version":3,"file":"deployer-vercel.esm.js","sources":["../src/index.ts"],"sourcesContent":["import { MastraDeployer } from '@mastra/core';\nimport * as child_process from 'child_process';\nimport { readFileSync, writeFileSync } from 'fs';\nimport { join } from 'path';\n\ninterface EnvVar {\n key: string;\n value: string;\n target: ('production' | 'preview' | 'development')[];\n type: 'plain' | 'secret';\n}\n\ninterface VercelError {\n message: string;\n code: string;\n}\n\nexport class VercelDeployer extends MastraDeployer {\n constructor({ scope, env, projectName }: { env?: Record<string, any>; scope: string; projectName: string }) {\n super({ scope, env, projectName });\n }\n writeFiles({ dir }: { dir: string }): void {\n this.writeIndex({ dir });\n\n writeFileSync(\n join(dir, 'vercel.json'),\n JSON.stringify(\n {\n version: 2,\n builds: [\n {\n src: 'index.mjs',\n use: '@vercel/node',\n config: { includeFiles: ['**'] },\n },\n ],\n routes: [\n {\n src: '/(.*)',\n dest: 'index.mjs',\n },\n ],\n },\n null,\n 2,\n ),\n );\n }\n\n private getProjectId({ dir }: { dir: string }): string {\n const projectJsonPath = join(dir, '.vercel', 'project.json');\n try {\n const projectJson = JSON.parse(readFileSync(projectJsonPath, 'utf-8'));\n return projectJson.projectId;\n } catch (error) {\n throw new Error('Could not find project ID. Make sure the project has been deployed first.');\n }\n }\n\n async syncEnv({ scope, dir, token }: { token: string; dir: string; scope: string }) {\n const envFiles = this.getEnvFiles();\n const envVars: string[] = [];\n\n for (const file of envFiles) {\n const vars = this.parseEnvFile(file);\n envVars.push(...vars);\n }\n\n console.log('Syncing environment variables...');\n\n // Transform env vars into the format expected by Vercel API\n const vercelEnvVars: EnvVar[] = envVars.map(envVar => {\n const [key, value] = envVar.split('=');\n if (!key || !value) {\n throw new Error(`Invalid environment variable format: ${envVar}`);\n }\n return {\n key,\n value,\n target: ['production', 'preview', 'development'],\n type: 'plain',\n };\n });\n\n try {\n const projectId = this.getProjectId({ dir });\n\n const response = await fetch(`https://api.vercel.com/v10/projects/${projectId}/env?teamId=${scope}&upsert=true`, {\n method: 'POST',\n headers: {\n Authorization: `Bearer ${token}`,\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify(vercelEnvVars),\n });\n\n if (!response.ok) {\n const error = (await response.json()) as VercelError;\n throw new Error(`Failed to sync environment variables: ${error.message}`);\n }\n\n console.log('✓ Successfully synced environment variables');\n } catch (error) {\n if (error instanceof Error) {\n console.error('Failed to sync environment variables:', error.message);\n } else {\n console.error('Failed to sync environment variables:', error);\n }\n throw error;\n }\n }\n\n async deploy({ dir, token }: { dir: string; token: string }): Promise<void> {\n // Get env vars for initial deployment\n const envFiles = this.getEnvFiles();\n const envVars: string[] = [];\n\n for (const file of envFiles) {\n const vars = this.parseEnvFile(file);\n envVars.push(...vars);\n }\n\n // Create the command array with base arguments\n const commandArgs = [\n '--scope',\n this.scope as string,\n '--cwd',\n dir,\n 'deploy',\n '--token',\n token,\n '--yes',\n ...(this.projectName ? ['--name', this.projectName] : []),\n ];\n\n // Add env vars to initial deployment\n for (const envVar of envVars) {\n commandArgs.push('--env', envVar);\n }\n\n // Run the Vercel deploy command\n // console.log('Running command:', 'vercel', commandArgs.join(' '));\n child_process.execSync(`vercel ${commandArgs}.join(' ')`, {\n cwd: dir,\n env: {\n ...this.env,\n PATH: process.env.PATH,\n },\n stdio: 'inherit',\n });\n\n console.log('Deployment started on Vercel. You can wait for it to finish or exit this command.');\n\n if (envVars.length > 0) {\n // Sync environment variables for future deployments\n await this.syncEnv({ scope: this.scope, dir, token });\n } else {\n console.log('\\nAdd your ENV vars to .env or your vercel dashboard.\\n');\n }\n }\n\n writeIndex({ dir }: { dir: string }): void {\n writeFileSync(\n join(dir, 'index.mjs'),\n `\n import { handle } from 'hono/vercel'\n import { app } from './hono.mjs';\n export const GET = handle(app);\n export const POST = handle(app);\n `,\n );\n }\n}\n"],"names":["VercelDeployer","_MastraDeployer","_ref","scope","env","projectName","call","_inheritsLoose","_proto","prototype","writeFiles","_ref2","dir","writeIndex","writeFileSync","join","JSON","stringify","version","builds","src","use","config","includeFiles","routes","dest","getProjectId","_ref3","projectJsonPath","projectJson","parse","readFileSync","projectId","error","Error","syncEnv","_syncEnv","_asyncToGenerator","_regeneratorRuntime","mark","_callee","_ref4","token","envFiles","envVars","_iterator","_step","file","vars","vercelEnvVars","response","wrap","_callee$","_context","prev","next","getEnvFiles","_createForOfIteratorHelperLoose","done","value","parseEnvFile","push","apply","console","log","map","envVar","_envVar$split","split","key","target","type","fetch","method","headers","Authorization","body","sent","ok","json","message","t0","stop","_x","arguments","deploy","_deploy","_callee2","_ref5","_iterator2","_step2","commandArgs","_i","_envVars","_callee2$","_context2","concat","length","child_process","execSync","cwd","_extends","PATH","process","stdio","_x2","_ref6","MastraDeployer"],"mappings":"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"}
1
+ {"version":3,"file":"deployer-vercel.esm.js","sources":["../src/index.ts"],"sourcesContent":["import { MastraDeployer } from '@mastra/core';\nimport * as child_process from 'child_process';\nimport { readFileSync, writeFileSync } from 'fs';\nimport { join } from 'path';\n\ninterface EnvVar {\n key: string;\n value: string;\n target: ('production' | 'preview' | 'development')[];\n type: 'plain' | 'secret';\n}\n\ninterface VercelError {\n message: string;\n code: string;\n}\n\nexport class VercelDeployer extends MastraDeployer {\n constructor({ scope, env, projectName }: { env?: Record<string, any>; scope: string; projectName: string }) {\n super({ scope, env, projectName });\n }\n writeFiles({ dir }: { dir: string }): void {\n this.writeIndex({ dir });\n\n writeFileSync(\n join(dir, 'vercel.json'),\n JSON.stringify(\n {\n version: 2,\n installCommand: 'npm install --omit=dev',\n builds: [\n {\n src: 'index.mjs',\n use: '@vercel/node',\n config: { includeFiles: ['**'] },\n },\n ],\n routes: [\n {\n src: '/(.*)',\n dest: 'index.mjs',\n },\n ],\n },\n null,\n 2,\n ),\n );\n }\n\n private getProjectId({ dir }: { dir: string }): string {\n const projectJsonPath = join(dir, '.vercel', 'project.json');\n try {\n const projectJson = JSON.parse(readFileSync(projectJsonPath, 'utf-8'));\n return projectJson.projectId;\n } catch (error) {\n throw new Error('Could not find project ID. Make sure the project has been deployed first.');\n }\n }\n\n async syncEnv({ scope, dir, token }: { token: string; dir: string; scope: string }) {\n const envFiles = this.getEnvFiles();\n const envVars: string[] = [];\n\n for (const file of envFiles) {\n const vars = this.parseEnvFile(file);\n envVars.push(...vars);\n }\n\n console.log('Syncing environment variables...');\n\n // Transform env vars into the format expected by Vercel API\n const vercelEnvVars: EnvVar[] = envVars.map(envVar => {\n const [key, value] = envVar.split('=');\n if (!key || !value) {\n throw new Error(`Invalid environment variable format: ${envVar}`);\n }\n return {\n key,\n value,\n target: ['production', 'preview', 'development'],\n type: 'plain',\n };\n });\n\n try {\n const projectId = this.getProjectId({ dir });\n\n const response = await fetch(`https://api.vercel.com/v10/projects/${projectId}/env?teamId=${scope}&upsert=true`, {\n method: 'POST',\n headers: {\n Authorization: `Bearer ${token}`,\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify(vercelEnvVars),\n });\n\n if (!response.ok) {\n const error = (await response.json()) as VercelError;\n throw new Error(`Failed to sync environment variables: ${error.message}`);\n }\n\n console.log('✓ Successfully synced environment variables');\n } catch (error) {\n if (error instanceof Error) {\n console.error('Failed to sync environment variables:', error.message);\n } else {\n console.error('Failed to sync environment variables:', error);\n }\n throw error;\n }\n }\n\n async deploy({ dir, token }: { dir: string; token: string }): Promise<void> {\n // Get env vars for initial deployment\n const envFiles = this.getEnvFiles();\n const envVars: string[] = [];\n\n for (const file of envFiles) {\n const vars = this.parseEnvFile(file);\n envVars.push(...vars);\n }\n\n // Create the command array with base arguments\n const commandArgs = [\n '--scope',\n this.scope as string,\n '--cwd',\n dir,\n 'deploy',\n '--token',\n token,\n '--yes',\n ...(this.projectName ? ['--name', this.projectName] : []),\n ];\n\n // Add env vars to initial deployment\n for (const envVar of envVars) {\n commandArgs.push('--env', envVar);\n }\n\n // Run the Vercel deploy command\n child_process.execSync(`vercel ${commandArgs.join(' ')}`, {\n cwd: dir,\n env: {\n ...this.env,\n PATH: process.env.PATH,\n },\n stdio: 'inherit',\n });\n\n console.log('Deployment started on Vercel. You can wait for it to finish or exit this command.');\n\n if (envVars.length > 0) {\n // Sync environment variables for future deployments\n await this.syncEnv({ scope: this.scope, dir, token });\n } else {\n console.log('\\nAdd your ENV vars to .env or your vercel dashboard.\\n');\n }\n }\n\n writeIndex({ dir }: { dir: string }): void {\n writeFileSync(\n join(dir, 'index.mjs'),\n `\n import { handle } from 'hono/vercel'\n import { app } from './hono.mjs';\n export const GET = handle(app);\n export const POST = handle(app);\n `,\n );\n }\n}\n"],"names":["VercelDeployer","_MastraDeployer","_ref","scope","env","projectName","call","_inheritsLoose","_proto","prototype","writeFiles","_ref2","dir","writeIndex","writeFileSync","join","JSON","stringify","version","installCommand","builds","src","use","config","includeFiles","routes","dest","getProjectId","_ref3","projectJsonPath","projectJson","parse","readFileSync","projectId","error","Error","syncEnv","_syncEnv","_asyncToGenerator","_regeneratorRuntime","mark","_callee","_ref4","token","envFiles","envVars","_iterator","_step","file","vars","vercelEnvVars","response","wrap","_callee$","_context","prev","next","getEnvFiles","_createForOfIteratorHelperLoose","done","value","parseEnvFile","push","apply","console","log","map","envVar","_envVar$split","split","key","target","type","fetch","method","headers","Authorization","body","sent","ok","json","message","t0","stop","_x","arguments","deploy","_deploy","_callee2","_ref5","_iterator2","_step2","commandArgs","_i","_envVars","_callee2$","_context2","concat","length","child_process","execSync","cwd","_extends","PATH","process","stdio","_x2","_ref6","MastraDeployer"],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAiB9C,qBAAa,cAAe,SAAQ,cAAc;gBACpC,EAAE,KAAK,EAAE,GAAG,EAAE,WAAW,EAAE,EAAE;QAAE,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAA;KAAE;IAG1G,UAAU,CAAC,EAAE,GAAG,EAAE,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI;IA4B1C,OAAO,CAAC,YAAY;IAUd,OAAO,CAAC,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE;IAqD5E,MAAM,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IAiD3E,UAAU,CAAC,EAAE,GAAG,EAAE,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI;CAW3C"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAiB9C,qBAAa,cAAe,SAAQ,cAAc;gBACpC,EAAE,KAAK,EAAE,GAAG,EAAE,WAAW,EAAE,EAAE;QAAE,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAA;KAAE;IAG1G,UAAU,CAAC,EAAE,GAAG,EAAE,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI;IA6B1C,OAAO,CAAC,YAAY;IAUd,OAAO,CAAC,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE;IAqD5E,MAAM,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IAgD3E,UAAU,CAAC,EAAE,GAAG,EAAE,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI;CAW3C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/deployer-vercel",
3
- "version": "0.0.1-alpha.1",
3
+ "version": "0.0.1-alpha.12",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -23,11 +23,8 @@
23
23
  "author": "",
24
24
  "license": "ISC",
25
25
  "dependencies": {
26
- "date-fns": "^4.1.0",
27
- "dotenv": "^16.3.1",
28
- "vercel": "^39.3.0",
29
- "@mastra/core": "0.1.27-alpha.66",
30
- "@mastra/deployer": "0.0.1-alpha.0"
26
+ "@mastra/core": "0.1.27-alpha.69",
27
+ "@mastra/deployer": "0.0.1-alpha.8"
31
28
  },
32
29
  "devDependencies": {
33
30
  "@babel/preset-env": "^7.26.0",
@@ -35,9 +32,9 @@
35
32
  "@tsconfig/recommended": "^1.0.7",
36
33
  "@types/jsdom": "^21.1.7",
37
34
  "@types/node": "^22.9.0",
38
- "@types/pg": "^8.11.10",
39
35
  "dts-cli": "^2.0.5",
40
- "vitest": "^2.1.8"
36
+ "vitest": "^2.1.8",
37
+ "vercel": "^39.3.0"
41
38
  },
42
39
  "scripts": {
43
40
  "build": "dts build",
package/src/index.ts CHANGED
@@ -27,6 +27,7 @@ export class VercelDeployer extends MastraDeployer {
27
27
  JSON.stringify(
28
28
  {
29
29
  version: 2,
30
+ installCommand: 'npm install --omit=dev',
30
31
  builds: [
31
32
  {
32
33
  src: 'index.mjs',
@@ -139,8 +140,7 @@ export class VercelDeployer extends MastraDeployer {
139
140
  }
140
141
 
141
142
  // Run the Vercel deploy command
142
- // console.log('Running command:', 'vercel', commandArgs.join(' '));
143
- child_process.execSync(`vercel ${commandArgs}.join(' ')`, {
143
+ child_process.execSync(`vercel ${commandArgs.join(' ')}`, {
144
144
  cwd: dir,
145
145
  env: {
146
146
  ...this.env,