siteplane 0.1.44 → 0.1.45

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.
@@ -5629,7 +5629,7 @@ async function setupDeployCommand(input, deps = defaults) {
5629
5629
  }
5630
5630
  }
5631
5631
  let poll = 0;
5632
- while (!deployment || !["READY", "ERROR", "CANCELED"].includes(deployment.readyState)) {
5632
+ while (!deployment || !["READY", "ERROR", "CANCELED", "BLOCKED"].includes(deployment.readyState)) {
5633
5633
  progress();
5634
5634
  const remaining2 = Date.parse(record.deadline) - deps.now();
5635
5635
  if (remaining2 <= 0)
@@ -5641,6 +5641,8 @@ async function setupDeployCommand(input, deps = defaults) {
5641
5641
  }
5642
5642
  if (deployment.readyState !== "READY") {
5643
5643
  await save({ ...record, phase: "failed", deploymentId: deployment.id });
5644
+ if (deployment.readyState === "BLOCKED")
5645
+ fail2("provider_deployment_blocked", "Vercel blocked the existing deployment. Check the commit author's project/team access and the provider's blocking reason, then resume. No additional deployment was started.");
5644
5646
  fail2("provider_build_failed", "The existing provider build failed or was canceled. Fix its diagnosed package/build configuration before requesting another deployment.");
5645
5647
  }
5646
5648
  if (record.phase !== "verified")
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "siteplane",
3
3
  "private": false,
4
- "version": "0.1.44",
4
+ "version": "0.1.45",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN LICENSE",
7
7
  "publishConfig": {