@dunnewold-labs/mr-manager 0.4.12 → 0.4.14

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.
Files changed (2) hide show
  1. package/dist/index.mjs +6 -3
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -185,7 +185,7 @@ import { fileURLToPath } from "url";
185
185
  // cli/package.json
186
186
  var package_default = {
187
187
  name: "@dunnewold-labs/mr-manager",
188
- version: "0.4.12",
188
+ version: "0.4.14",
189
189
  description: "Mr. Manager - Task and project management CLI",
190
190
  bin: {
191
191
  mr: "./dist/index.mjs"
@@ -1000,6 +1000,7 @@ var NON_CODE_TASK_PATTERNS = [
1000
1000
  ];
1001
1001
  function taskLikelyDoesNotNeedCodeChanges(task) {
1002
1002
  if (task.mode && task.mode !== "development") return true;
1003
+ if (task.mode === "development") return false;
1003
1004
  const haystack = normalizeWhitespace(
1004
1005
  [task.title, task.notes, task.prdContent].filter(Boolean).join(" ").toLowerCase()
1005
1006
  );
@@ -2622,7 +2623,9 @@ var watchCommand = new Command8("watch").description(
2622
2623
  ...prUrl ? { link: prUrl } : {}
2623
2624
  });
2624
2625
  logSuccess(prefix, `"${paint("bold", task.title)}" marked ready for review`);
2625
- await postTaskUpdate(task.id, noMrRequested ? `Task marked ready for review \u2014 no ${prLabel} needed: ${noMrDescription}` : "Task marked ready for review", "system");
2626
+ if (noMrRequested) {
2627
+ await postTaskUpdate(task.id, `No ${prLabel} required: ${noMrDescription}`, "system");
2628
+ }
2626
2629
  } catch (err) {
2627
2630
  logError(prefix, `Failed to update task: ${err.message}`);
2628
2631
  }
@@ -2767,7 +2770,7 @@ var watchCommand = new Command8("watch").description(
2767
2770
  ...prdContent ? { prdContent } : {}
2768
2771
  });
2769
2772
  logSuccess(prefix, `"${paint("bold", task.title)}" PRD generated and marked ready for review`);
2770
- await postTaskUpdate(task.id, "PRD generated \u2014 ready for review", "system");
2773
+ await postTaskUpdate(task.id, "PRD generated", "system");
2771
2774
  } catch (err) {
2772
2775
  logError(prefix, `Failed to update task: ${err.message}`);
2773
2776
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dunnewold-labs/mr-manager",
3
- "version": "0.4.12",
3
+ "version": "0.4.14",
4
4
  "description": "Mr. Manager - Task and project management CLI",
5
5
  "bin": {
6
6
  "mr": "./dist/index.mjs"