@wise/wds-codemods 1.0.0-experimental-e08b4bf → 1.0.0-experimental-eff0ded

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.
@@ -1653,7 +1653,10 @@ const assessPrerequisitesBatch = (targetPaths, codemodPath, spinnies) => {
1653
1653
  spinnies.fail("prerequisite-check", { text: `No package.json found for ${failedTargetsNoPackage.length} target${failedTargetsNoPackage.length !== 1 ? "s" : ""} (searching upwards to project root).` });
1654
1654
  failedTargetsNoPackage.forEach((t$5) => console.error(`- ${t$5}`));
1655
1655
  }
1656
- else spinnies.succeed("prerequisite-check", { text: `\x1b[0mChecked ${totalTargets} target${totalTargets !== 1 ? "s" : ""} across ${uniquePackages} package${uniquePackages !== 1 ? "s" : ""}:\x1b[0m \x1b[32m${passedCount} passed\x1b[0m, \x1b[31m${failedCount} failed\x1b[0m.` });
1656
+ else {
1657
+ const failedPart = failedCount > 0 ? `, \x1b[31m${failedCount} failed\x1b[0m` : "";
1658
+ spinnies.succeed("prerequisite-check", { text: `\x1b[0mChecked ${totalTargets} target${totalTargets !== 1 ? "s" : ""} across ${uniquePackages} package${uniquePackages !== 1 ? "s" : ""}:\x1b[0m \x1b[32m${passedCount} passed\x1b[0m${failedPart}` });
1659
+ }
1657
1660
  const failedPackageRoots = Array.from(results.entries()).filter(([, ok]) => !ok).map(([root]) => root);
1658
1661
  return {
1659
1662
  allPassed,
@@ -2036,4 +2039,4 @@ Object.defineProperty(exports, 'validateClaudeConfig', {
2036
2039
  return validateClaudeConfig;
2037
2040
  }
2038
2041
  });
2039
- //# sourceMappingURL=helpers-IFtIGywc.js.map
2042
+ //# sourceMappingURL=helpers-CgRlTy3U.js.map