thinkncollab-cli 0.0.51 → 0.0.52
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/bin/index.js +8 -3
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -502,10 +502,15 @@ async function main() {
|
|
|
502
502
|
await version();
|
|
503
503
|
break;
|
|
504
504
|
|
|
505
|
-
case "my-tasks":
|
|
506
|
-
|
|
505
|
+
case "my-tasks":{
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
const roomIdx = args.indexOf("my-tasks");
|
|
509
|
+
const roomId = agrs[roomIdx+1];
|
|
510
|
+
|
|
511
|
+
await MyTasks(roomId);
|
|
507
512
|
break;
|
|
508
|
-
|
|
513
|
+
}
|
|
509
514
|
default:
|
|
510
515
|
console.log("✅ TNC CLI ready!");
|
|
511
516
|
console.log("Commands:");
|