techunter 1.2.2 → 1.2.3

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
@@ -146943,14 +146943,14 @@ async function printTaskList(config) {
146943
146943
  const roots = childrenOf.get(null) ?? [];
146944
146944
  for (let i2 = 0; i2 < roots.length; i2++) {
146945
146945
  const isLast = i2 === roots.length - 1;
146946
- printTask2(roots[i2], "", isLast ? "\\-- " : "|-- ", isLast);
146946
+ printTask2(roots[i2], "", "", isLast);
146947
146947
  }
146948
146948
  const remaining = tasks.filter((task) => !visited.has(task.number));
146949
146949
  if (remaining.length > 0) {
146950
146950
  console.log(source_default.yellow(" Warning: task hierarchy contains orphaned or cyclic links; showing remaining tasks at root."));
146951
146951
  for (let i2 = 0; i2 < remaining.length; i2++) {
146952
146952
  const isLast = i2 === remaining.length - 1;
146953
- printTask2(remaining[i2], "", isLast ? "\\-- " : "|-- ", isLast);
146953
+ printTask2(remaining[i2], "", "", isLast);
146954
146954
  }
146955
146955
  }
146956
146956
  }
@@ -151488,7 +151488,7 @@ async function startAutoUpdate(currentVersion) {
151488
151488
  }
151489
151489
 
151490
151490
  // src/index.ts
151491
- var version = "1.2.2";
151491
+ var version = "1.2.3";
151492
151492
  var SLASH_NAMES = [
151493
151493
  "/help",
151494
151494
  "/h",
package/dist/mcp.cjs CHANGED
@@ -143805,14 +143805,14 @@ async function printTaskList(config2) {
143805
143805
  const roots = childrenOf.get(null) ?? [];
143806
143806
  for (let i2 = 0; i2 < roots.length; i2++) {
143807
143807
  const isLast = i2 === roots.length - 1;
143808
- printTask2(roots[i2], "", isLast ? "\\-- " : "|-- ", isLast);
143808
+ printTask2(roots[i2], "", "", isLast);
143809
143809
  }
143810
143810
  const remaining = tasks.filter((task) => !visited.has(task.number));
143811
143811
  if (remaining.length > 0) {
143812
143812
  console.log(source_default.yellow(" Warning: task hierarchy contains orphaned or cyclic links; showing remaining tasks at root."));
143813
143813
  for (let i2 = 0; i2 < remaining.length; i2++) {
143814
143814
  const isLast = i2 === remaining.length - 1;
143815
- printTask2(remaining[i2], "", isLast ? "\\-- " : "|-- ", isLast);
143815
+ printTask2(remaining[i2], "", "", isLast);
143816
143816
  }
143817
143817
  }
143818
143818
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "techunter",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "AI-powered task distribution CLI for development teams",
5
5
  "author": "Techunter Contributors",
6
6
  "license": "MIT",