@mutmutco/cli 3.104.0 → 3.105.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/main.cjs +6 -0
- package/package.json +1 -1
package/dist/main.cjs
CHANGED
|
@@ -12393,6 +12393,9 @@ async function preflight(deps, ctx, stage, meta) {
|
|
|
12393
12393
|
}
|
|
12394
12394
|
await deps.runSelf(["secrets", "preflight", "--stage", stage, "--repo", ctx.repo]);
|
|
12395
12395
|
enforceGateBudget(deps, ctx.repo);
|
|
12396
|
+
if (model === "hub-serverless") {
|
|
12397
|
+
await deps.run("node", ["scripts/release-distribution.mjs", "verify-deps"]);
|
|
12398
|
+
}
|
|
12396
12399
|
return model;
|
|
12397
12400
|
}
|
|
12398
12401
|
async function preflightMergeToMain(deps, deployModel, remoteRef, blockingPrefix, realignMessage) {
|
|
@@ -20436,6 +20439,9 @@ async function runHotfixStart(deps, options) {
|
|
|
20436
20439
|
};
|
|
20437
20440
|
}
|
|
20438
20441
|
const { sha, label } = await resolveHotfixSource(deps, ctx, options.from);
|
|
20442
|
+
if (deployModel === "hub-serverless") {
|
|
20443
|
+
await deps.run("node", ["scripts/release-distribution.mjs", "verify-deps"]);
|
|
20444
|
+
}
|
|
20439
20445
|
const remoteBranch = clean3(await deps.run("git", ["ls-remote", "origin", `refs/heads/${branch}`]));
|
|
20440
20446
|
if (remoteBranch) {
|
|
20441
20447
|
await deps.run("git", ["checkout", branch]);
|
package/package.json
CHANGED