thinkncollab-cli 0.0.43 → 0.0.44
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/commands/version.js +2 -1
- package/package.json +1 -1
package/commands/version.js
CHANGED
|
@@ -15,7 +15,8 @@ async function version() {
|
|
|
15
15
|
console.log(`ThinkNCollab CLI Version: ${pkg.version}`);
|
|
16
16
|
console.log(`ThinkNCollab CLI is Installed at: ${pkgPath}`);
|
|
17
17
|
} catch (error) {
|
|
18
|
-
console.log("
|
|
18
|
+
console.log("Something went wrong while fetching the version:");
|
|
19
|
+
console.log(error);
|
|
19
20
|
}
|
|
20
21
|
}
|
|
21
22
|
export default version;
|