@getmonoceros/workbench 1.9.4 → 1.9.5

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/bin.js CHANGED
@@ -2512,7 +2512,6 @@ function addRepoToDoc(doc, repo) {
2512
2512
  } else {
2513
2513
  item.delete("provider");
2514
2514
  }
2515
- relocateLeakedSectionComments(doc);
2516
2515
  return true;
2517
2516
  }
2518
2517
  const entry2 = new YAMLMap2();
@@ -2545,7 +2544,6 @@ function addRepoToDoc(doc, repo) {
2545
2544
  entry2.comment = hintLines.join("\n");
2546
2545
  }
2547
2546
  seq.add(entry2);
2548
- relocateLeakedSectionComments(doc);
2549
2547
  return true;
2550
2548
  }
2551
2549
  function removeLanguageFromDoc(doc, lang) {
@@ -2976,6 +2974,7 @@ async function mutate(opts, apply) {
2976
2974
  logger.info("No changes \u2014 yml is already in the desired state.");
2977
2975
  return { status: "no-change" };
2978
2976
  }
2977
+ relocateLeakedSectionComments(parsed.doc);
2979
2978
  const newText = stringifyConfig(parsed.doc);
2980
2979
  parseConfig(newText, ymlPath);
2981
2980
  const out = opts.output ?? ((line) => process.stdout.write(line + "\n"));
@@ -4433,7 +4432,7 @@ async function persistPromptedIdentity(prompted, ymlPath, home, logger) {
4433
4432
  }
4434
4433
 
4435
4434
  // src/version.ts
4436
- var CLI_VERSION = true ? "1.9.4" : "dev";
4435
+ var CLI_VERSION = true ? "1.9.5" : "dev";
4437
4436
 
4438
4437
  // src/commands/_dispatch.ts
4439
4438
  import { consola as consola12 } from "consola";