imdone-cli 0.5.0 → 0.5.1

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/index.cjs CHANGED
@@ -105758,7 +105758,7 @@ async function imdoneInit(projectPath, options2, { feedback: feedback3 } = {}) {
105758
105758
  // package.json
105759
105759
  var package_default = {
105760
105760
  name: "imdone-cli",
105761
- version: "0.5.0",
105761
+ version: "0.5.1",
105762
105762
  author: "Jesse Piascik",
105763
105763
  description: "An imdone cli that automates your jira updates with markdown files.",
105764
105764
  license: "Proprietary",
@@ -106873,11 +106873,11 @@ program2.command("init").description("Initialize Jira integration").option("--na
106873
106873
  let feedback3;
106874
106874
  const projectPath = process.cwd();
106875
106875
  try {
106876
- feedback3 = getFeedback("Initializing imdone project...", true)?.feedback;
106876
+ feedback3 = getFeedback("Initializing imdone project...")?.feedback;
106877
106877
  await checkForUpdates();
106878
106878
  const response = await imdoneInit(projectPath, options2, { feedback: feedback3 });
106879
106879
  if (!response) {
106880
- console.log("Configuration cancelled");
106880
+ feedback3.fail("Configuration cancelled");
106881
106881
  process.exit(1);
106882
106882
  }
106883
106883
  feedback3.succeed(`Imdone initialization for "${config.name}" completed successfully`);