@liiift-studio/deploy-vercel-from-sanity 1.0.7 → 1.0.8
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 +1 -2
- package/dist/index.mjs +1 -2
- package/package.json +1 -1
- package/src/components/DeployItem.tsx +0 -1
- package/src/version.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -696,7 +696,6 @@ function DeployItem({ target, token, onDelete, onEdit }) {
|
|
|
696
696
|
{
|
|
697
697
|
text: "Deploy",
|
|
698
698
|
tone: "primary",
|
|
699
|
-
loading: triggering,
|
|
700
699
|
disabled: isActive,
|
|
701
700
|
onClick: deploy,
|
|
702
701
|
style: {
|
|
@@ -937,7 +936,7 @@ function DeployTargetForm({ initial, onSaved, onClose }) {
|
|
|
937
936
|
}
|
|
938
937
|
|
|
939
938
|
// src/version.ts
|
|
940
|
-
var VERSION = "1.0.
|
|
939
|
+
var VERSION = "1.0.8";
|
|
941
940
|
|
|
942
941
|
// src/components/DeployTool.tsx
|
|
943
942
|
var import_jsx_runtime6 = require("react/jsx-runtime");
|
package/dist/index.mjs
CHANGED
|
@@ -718,7 +718,6 @@ function DeployItem({ target, token, onDelete, onEdit }) {
|
|
|
718
718
|
{
|
|
719
719
|
text: "Deploy",
|
|
720
720
|
tone: "primary",
|
|
721
|
-
loading: triggering,
|
|
722
721
|
disabled: isActive,
|
|
723
722
|
onClick: deploy,
|
|
724
723
|
style: {
|
|
@@ -970,7 +969,7 @@ function DeployTargetForm({ initial, onSaved, onClose }) {
|
|
|
970
969
|
}
|
|
971
970
|
|
|
972
971
|
// src/version.ts
|
|
973
|
-
var VERSION = "1.0.
|
|
972
|
+
var VERSION = "1.0.8";
|
|
974
973
|
|
|
975
974
|
// src/components/DeployTool.tsx
|
|
976
975
|
import { jsx as jsx6, jsxs as jsxs6 } from "react/jsx-runtime";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liiift-studio/deploy-vercel-from-sanity",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Sanity Studio plugin — trigger and monitor Vercel deployments with full status, history, and build logs. Supports v3, v4, and v5.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Liiift Studio",
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Package version — keep in sync with package.json
|
|
2
|
-
export const VERSION = '1.0.
|
|
2
|
+
export const VERSION = '1.0.8'
|