@mastra/deployer-vercel 0.1.19-alpha.3 → 0.1.19-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 -1
- package/dist/_tsup-dts-rollup.d.ts +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +3 -3
|
@@ -15,7 +15,7 @@ export declare class VercelDeployer extends Deployer {
|
|
|
15
15
|
private syncEnv;
|
|
16
16
|
prepare(outputDirectory: string): Promise<void>;
|
|
17
17
|
private getEntry;
|
|
18
|
-
bundle(entryFile: string, outputDirectory: string): Promise<void>;
|
|
18
|
+
bundle(entryFile: string, outputDirectory: string, toolsPaths: string[]): Promise<void>;
|
|
19
19
|
deploy(outputDirectory: string): Promise<void>;
|
|
20
20
|
}
|
|
21
21
|
|
|
@@ -15,7 +15,7 @@ export declare class VercelDeployer extends Deployer {
|
|
|
15
15
|
private syncEnv;
|
|
16
16
|
prepare(outputDirectory: string): Promise<void>;
|
|
17
17
|
private getEntry;
|
|
18
|
-
bundle(entryFile: string, outputDirectory: string): Promise<void>;
|
|
18
|
+
bundle(entryFile: string, outputDirectory: string, toolsPaths: string[]): Promise<void>;
|
|
19
19
|
deploy(outputDirectory: string): Promise<void>;
|
|
20
20
|
}
|
|
21
21
|
|
package/dist/index.cjs
CHANGED
|
@@ -142,8 +142,8 @@ export const GET = handle(app);
|
|
|
142
142
|
export const POST = handle(app);
|
|
143
143
|
`;
|
|
144
144
|
}
|
|
145
|
-
async bundle(entryFile, outputDirectory) {
|
|
146
|
-
return this._bundle(this.getEntry(), entryFile, outputDirectory);
|
|
145
|
+
async bundle(entryFile, outputDirectory, toolsPaths) {
|
|
146
|
+
return this._bundle(this.getEntry(), entryFile, outputDirectory, toolsPaths);
|
|
147
147
|
}
|
|
148
148
|
async deploy(outputDirectory) {
|
|
149
149
|
const envVars = await this.loadEnvVars();
|
package/dist/index.js
CHANGED
|
@@ -117,8 +117,8 @@ export const GET = handle(app);
|
|
|
117
117
|
export const POST = handle(app);
|
|
118
118
|
`;
|
|
119
119
|
}
|
|
120
|
-
async bundle(entryFile, outputDirectory) {
|
|
121
|
-
return this._bundle(this.getEntry(), entryFile, outputDirectory);
|
|
120
|
+
async bundle(entryFile, outputDirectory, toolsPaths) {
|
|
121
|
+
return this._bundle(this.getEntry(), entryFile, outputDirectory, toolsPaths);
|
|
122
122
|
}
|
|
123
123
|
async deploy(outputDirectory) {
|
|
124
124
|
const envVars = await this.loadEnvVars();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/deployer-vercel",
|
|
3
|
-
"version": "0.1.19-alpha.
|
|
3
|
+
"version": "0.1.19-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.
|
|
31
|
-
"@mastra/deployer": "^0.
|
|
30
|
+
"@mastra/core": "^0.9.0-alpha.4",
|
|
31
|
+
"@mastra/deployer": "^0.3.0-alpha.5"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@microsoft/api-extractor": "^7.52.1",
|