@mastra/deployer-vercel 0.1.0-alpha.56 → 0.1.0-alpha.58
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 +18 -0
- package/dist/_tsup-dts-rollup.d.ts +21 -0
- package/dist/index.d.ts +1 -21
- package/package.json +6 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @mastra/deployer-vercel
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.58
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [a9345f9]
|
|
8
|
+
- @mastra/core@0.2.0-alpha.102
|
|
9
|
+
- @mastra/deployer@0.1.0-alpha.52
|
|
10
|
+
|
|
11
|
+
## 0.1.0-alpha.57
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 4f1d1a1: Enforce types ann cleanup package.json
|
|
16
|
+
- Updated dependencies [66a03ec]
|
|
17
|
+
- Updated dependencies [4f1d1a1]
|
|
18
|
+
- @mastra/core@0.2.0-alpha.101
|
|
19
|
+
- @mastra/deployer@0.1.0-alpha.51
|
|
20
|
+
|
|
3
21
|
## 0.1.0-alpha.56
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Deployer } from '@mastra/deployer';
|
|
2
|
+
|
|
3
|
+
export declare class VercelDeployer extends Deployer {
|
|
4
|
+
private teamId;
|
|
5
|
+
private projectName;
|
|
6
|
+
private token;
|
|
7
|
+
constructor({ teamId, projectName, token }: {
|
|
8
|
+
teamId: string;
|
|
9
|
+
projectName: string;
|
|
10
|
+
token: string;
|
|
11
|
+
});
|
|
12
|
+
writeFiles(outputDirectory: string): void;
|
|
13
|
+
private getProjectId;
|
|
14
|
+
private syncEnv;
|
|
15
|
+
prepare(outputDirectory: string): Promise<void>;
|
|
16
|
+
private getEntry;
|
|
17
|
+
bundle(entryFile: string, outputDirectory: string): Promise<void>;
|
|
18
|
+
deploy(outputDirectory: string): Promise<void>;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export { }
|
package/dist/index.d.ts
CHANGED
|
@@ -1,21 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
declare class VercelDeployer extends Deployer {
|
|
4
|
-
private teamId;
|
|
5
|
-
private projectName;
|
|
6
|
-
private token;
|
|
7
|
-
constructor({ teamId, projectName, token }: {
|
|
8
|
-
teamId: string;
|
|
9
|
-
projectName: string;
|
|
10
|
-
token: string;
|
|
11
|
-
});
|
|
12
|
-
writeFiles(outputDirectory: string): void;
|
|
13
|
-
private getProjectId;
|
|
14
|
-
private syncEnv;
|
|
15
|
-
prepare(outputDirectory: string): Promise<void>;
|
|
16
|
-
private getEntry;
|
|
17
|
-
bundle(entryFile: string, outputDirectory: string): Promise<void>;
|
|
18
|
-
deploy(outputDirectory: string): Promise<void>;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
export { VercelDeployer };
|
|
1
|
+
export { VercelDeployer } from './_tsup-dts-rollup.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/deployer-vercel",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.58",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -18,21 +18,19 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@rollup/plugin-virtual": "^3.0.2",
|
|
20
20
|
"fs-extra": "^11.2.0",
|
|
21
|
-
"@mastra/core": "^0.2.0-alpha.
|
|
22
|
-
"@mastra/deployer": "^0.1.0-alpha.
|
|
21
|
+
"@mastra/core": "^0.2.0-alpha.102",
|
|
22
|
+
"@mastra/deployer": "^0.1.0-alpha.52"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@
|
|
26
|
-
"@
|
|
27
|
-
"@tsconfig/recommended": "^1.0.7",
|
|
28
|
-
"@types/node": "^22.9.0",
|
|
25
|
+
"@microsoft/api-extractor": "^7.49.2",
|
|
26
|
+
"@types/node": "^22.13.1",
|
|
29
27
|
"tsup": "^8.0.1",
|
|
30
28
|
"typescript": "^5.3.3",
|
|
31
29
|
"vercel": "^39.3.0",
|
|
32
30
|
"vitest": "^3.0.4"
|
|
33
31
|
},
|
|
34
32
|
"scripts": {
|
|
35
|
-
"build": "tsup src/index.ts --format esm --dts --clean --treeshake",
|
|
33
|
+
"build": "tsup src/index.ts --format esm --experimental-dts --clean --treeshake",
|
|
36
34
|
"build:watch": "pnpm build --watch",
|
|
37
35
|
"test": "vitest run"
|
|
38
36
|
}
|