@rigstate/cli 0.7.36 → 0.7.37

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.js CHANGED
@@ -1104,7 +1104,7 @@ var require_package = __commonJS({
1104
1104
  "package.json"(exports, module) {
1105
1105
  module.exports = {
1106
1106
  name: "@rigstate/cli",
1107
- version: "0.7.36",
1107
+ version: "0.7.37",
1108
1108
  description: "Rigstate CLI - Code audit, sync and supervision tool",
1109
1109
  type: "module",
1110
1110
  main: "./dist/index.js",
@@ -5280,11 +5280,14 @@ function createRoadmapCommand() {
5280
5280
  "IN_PROGRESS": [],
5281
5281
  "ACTIVE": [],
5282
5282
  "LOCKED": [],
5283
- "PENDING": []
5283
+ "PENDING": [],
5284
+ "TODO": [],
5285
+ "COMPLETED": []
5284
5286
  };
5285
5287
  tasks.forEach((t) => {
5286
- if (columns[t.status]) {
5287
- columns[t.status].push(t);
5288
+ const status = t.status;
5289
+ if (columns[status]) {
5290
+ columns[status].push(t);
5288
5291
  }
5289
5292
  });
5290
5293
  displayColumn("\u{1F525} IN PROGRESS", columns.IN_PROGRESS, chalk35.yellow);