@theholocron/holocron-plugin-vercel 2.0.0-alpha.35 → 2.0.0-alpha.36
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/README.md +7 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -7,8 +7,10 @@ capability against the [Vercel REST API](https://vercel.com/docs/rest-api).
|
|
|
7
7
|
|
|
8
8
|
## Install
|
|
9
9
|
|
|
10
|
+
<!-- prettier-ignore -->
|
|
10
11
|
```bash
|
|
11
12
|
pnpm add -D @theholocron/holocron-plugin-vercel@alpha
|
|
13
|
+
|
|
12
14
|
```
|
|
13
15
|
|
|
14
16
|
## Auth
|
|
@@ -25,13 +27,15 @@ always cover what holocron needs at the API level. Explicit token only.
|
|
|
25
27
|
|
|
26
28
|
## Config
|
|
27
29
|
|
|
30
|
+
<!-- prettier-ignore -->
|
|
28
31
|
```jsonc
|
|
29
32
|
// holocron.config.json
|
|
30
33
|
{
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
+
"providers": {
|
|
35
|
+
"deployment": ["vercel", { "teamId": "team_xxx" }],
|
|
36
|
+
},
|
|
34
37
|
}
|
|
38
|
+
|
|
35
39
|
```
|
|
36
40
|
|
|
37
41
|
- `teamId` (optional) — Vercel team id. When set, all requests are
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/holocron-plugin-vercel",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.36",
|
|
4
4
|
"description": "Holocron plugin for Vercel. Implements the deployment capability against the Vercel REST API.",
|
|
5
5
|
"homepage": "https://github.com/theholocron/holocron/tree/main/packages/holocron-plugin-vercel#readme",
|
|
6
6
|
"bugs": "https://github.com/theholocron/holocron/issues",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@theholocron/cli": "2.0.0-alpha.
|
|
24
|
+
"@theholocron/cli": "2.0.0-alpha.36"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/node": "^26",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"tsx": "^4.22.4",
|
|
38
38
|
"typescript": "^5.9.3",
|
|
39
39
|
"vitest": "^4.1.10",
|
|
40
|
-
"@theholocron/cli": "2.0.0-alpha.
|
|
40
|
+
"@theholocron/cli": "2.0.0-alpha.36"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|