@mastra/deployer-vercel 0.1.21-alpha.4 → 0.1.21-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_tsup-dts-rollup.d.cts +1 -0
- package/dist/_tsup-dts-rollup.d.ts +1 -0
- package/dist/index.cjs +3 -0
- package/dist/index.js +3 -0
- package/package.json +3 -3
|
@@ -17,6 +17,7 @@ export declare class VercelDeployer extends Deployer {
|
|
|
17
17
|
private writeVercelJSON;
|
|
18
18
|
bundle(entryFile: string, outputDirectory: string, toolsPaths: string[]): Promise<void>;
|
|
19
19
|
deploy(outputDirectory: string): Promise<void>;
|
|
20
|
+
lint(entryFile: string, outputDirectory: string, toolsPaths: string[]): Promise<void>;
|
|
20
21
|
}
|
|
21
22
|
|
|
22
23
|
export { }
|
|
@@ -17,6 +17,7 @@ export declare class VercelDeployer extends Deployer {
|
|
|
17
17
|
private writeVercelJSON;
|
|
18
18
|
bundle(entryFile: string, outputDirectory: string, toolsPaths: string[]): Promise<void>;
|
|
19
19
|
deploy(outputDirectory: string): Promise<void>;
|
|
20
|
+
lint(entryFile: string, outputDirectory: string, toolsPaths: string[]): Promise<void>;
|
|
20
21
|
}
|
|
21
22
|
|
|
22
23
|
export { }
|
package/dist/index.cjs
CHANGED
|
@@ -221,6 +221,9 @@ export const POST = handle(app);
|
|
|
221
221
|
this.logger.info("\nAdd your ENV vars to .env or your vercel dashboard.\n");
|
|
222
222
|
}
|
|
223
223
|
}
|
|
224
|
+
async lint(entryFile, outputDirectory, toolsPaths) {
|
|
225
|
+
await super.lint(entryFile, outputDirectory, toolsPaths);
|
|
226
|
+
}
|
|
224
227
|
};
|
|
225
228
|
|
|
226
229
|
exports.VercelDeployer = VercelDeployer;
|
package/dist/index.js
CHANGED
|
@@ -196,6 +196,9 @@ export const POST = handle(app);
|
|
|
196
196
|
this.logger.info("\nAdd your ENV vars to .env or your vercel dashboard.\n");
|
|
197
197
|
}
|
|
198
198
|
}
|
|
199
|
+
async lint(entryFile, outputDirectory, toolsPaths) {
|
|
200
|
+
await super.lint(entryFile, outputDirectory, toolsPaths);
|
|
201
|
+
}
|
|
199
202
|
};
|
|
200
203
|
|
|
201
204
|
export { VercelDeployer };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/deployer-vercel",
|
|
3
|
-
"version": "0.1.21-alpha.
|
|
3
|
+
"version": "0.1.21-alpha.5",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@rollup/plugin-virtual": "^3.0.2",
|
|
29
29
|
"fs-extra": "^11.3.0",
|
|
30
|
-
"@mastra/core": "^0.9.2-alpha.
|
|
31
|
-
"@mastra/deployer": "^0.3.2-alpha.
|
|
30
|
+
"@mastra/core": "^0.9.2-alpha.5",
|
|
31
|
+
"@mastra/deployer": "^0.3.2-alpha.5"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@microsoft/api-extractor": "^7.52.5",
|