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.
Files changed (2) hide show
  1. package/bin/index.js +8 -3
  2. 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
- await MyTasks();
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:");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "thinkncollab-cli",
3
3
  "author": "Raman Singh",
4
- "version": "0.0.51",
4
+ "version": "0.0.52",
5
5
  "description": "CLI tool for ThinkNCollab",
6
6
  "main": "index.js",
7
7
  "bin": {