thinkncollab-cli 0.0.46 → 0.0.47
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 +6 -1
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -487,8 +487,13 @@ async function main() {
|
|
|
487
487
|
console.log(" tnc-cli login");
|
|
488
488
|
console.log(" tnc-cli init");
|
|
489
489
|
console.log(" tnc-cli push --room <roomId> <path>");
|
|
490
|
+
console.log(" tnc-cli pull --room <roomId>");
|
|
491
|
+
console.log(" tnc-cli status");
|
|
492
|
+
console.log(" tnc-cli whoami");
|
|
490
493
|
console.log(" tnc-cli logout");
|
|
491
|
-
|
|
494
|
+
console.log(" tnc-cli help");
|
|
495
|
+
console.log(" tnc-cli version");
|
|
496
|
+
}
|
|
492
497
|
}
|
|
493
498
|
|
|
494
499
|
main().catch(err => console.error(err));
|