@mutmutco/cli 3.86.0 → 3.87.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 +5 -0
- package/package.json +1 -1
package/dist/main.cjs
CHANGED
|
@@ -23516,6 +23516,11 @@ function registerBootstrapCommands(program3) {
|
|
|
23516
23516
|
if (!seed.classes.includes(o.class)) continue;
|
|
23517
23517
|
if (!seedMatchesDeployModel(seed, applyDeployModel)) continue;
|
|
23518
23518
|
if (!seedMatchesProjectType(seed, applyProjectType)) continue;
|
|
23519
|
+
const waiver = seed.waivers?.[slug];
|
|
23520
|
+
if (waiver) {
|
|
23521
|
+
actions.push({ action: "skip", target: seed.target, ownership: seed.ownership, reason: `waived: ${waiver}` });
|
|
23522
|
+
continue;
|
|
23523
|
+
}
|
|
23519
23524
|
const resolved = { ...seed, target: seed.target.replace("{{REPO_SLUG}}", slug) };
|
|
23520
23525
|
let exists = false;
|
|
23521
23526
|
let sha;
|
package/package.json
CHANGED