@liiift-studio/deploy-vercel-from-sanity 0.1.7 → 0.2.0
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/index.js +586 -329
- package/dist/index.mjs +597 -336
- package/package.json +1 -1
- package/src/components/DeployHistory.tsx +1 -1
- package/src/components/DeployItem.tsx +346 -275
- package/src/components/DeployTargetForm.tsx +143 -0
- package/src/components/DeployTool.tsx +127 -33
- package/src/components/StatusBadge.tsx +1 -1
- package/src/components/TokenSetup.tsx +57 -54
- package/src/version.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liiift-studio/deploy-vercel-from-sanity",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Sanity Studio v5 plugin — trigger and monitor Vercel deployments with full status, history, and build logs",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Liiift Studio",
|
|
@@ -109,7 +109,7 @@ export function DeployHistory({ target, token, onClose }: DeployHistoryProps) {
|
|
|
109
109
|
|
|
110
110
|
{/* Status */}
|
|
111
111
|
<Box flex={1}>
|
|
112
|
-
<Badge tone={tone}
|
|
112
|
+
<Badge tone={tone}>{label}</Badge>
|
|
113
113
|
</Box>
|
|
114
114
|
|
|
115
115
|
{/* Branch + commit */}
|