@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.cjs +7 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +7 -4
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/commands/roadmap.ts +15 -9
package/dist/index.cjs
CHANGED
|
@@ -1132,7 +1132,7 @@ var require_package = __commonJS({
|
|
|
1132
1132
|
"package.json"(exports2, module2) {
|
|
1133
1133
|
module2.exports = {
|
|
1134
1134
|
name: "@rigstate/cli",
|
|
1135
|
-
version: "0.7.
|
|
1135
|
+
version: "0.7.37",
|
|
1136
1136
|
description: "Rigstate CLI - Code audit, sync and supervision tool",
|
|
1137
1137
|
type: "module",
|
|
1138
1138
|
main: "./dist/index.js",
|
|
@@ -5308,11 +5308,14 @@ function createRoadmapCommand() {
|
|
|
5308
5308
|
"IN_PROGRESS": [],
|
|
5309
5309
|
"ACTIVE": [],
|
|
5310
5310
|
"LOCKED": [],
|
|
5311
|
-
"PENDING": []
|
|
5311
|
+
"PENDING": [],
|
|
5312
|
+
"TODO": [],
|
|
5313
|
+
"COMPLETED": []
|
|
5312
5314
|
};
|
|
5313
5315
|
tasks.forEach((t) => {
|
|
5314
|
-
|
|
5315
|
-
|
|
5316
|
+
const status = t.status;
|
|
5317
|
+
if (columns[status]) {
|
|
5318
|
+
columns[status].push(t);
|
|
5316
5319
|
}
|
|
5317
5320
|
});
|
|
5318
5321
|
displayColumn("\u{1F525} IN PROGRESS", columns.IN_PROGRESS, import_chalk35.default.yellow);
|