cnagent 2.0.1 → 2.0.2
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/cn +2 -1
- package/package.json +1 -1
package/bin/cn
CHANGED
|
@@ -11,7 +11,7 @@ const { execSync, spawn } = require('child_process');
|
|
|
11
11
|
const path = require('path');
|
|
12
12
|
const fs = require('fs');
|
|
13
13
|
|
|
14
|
-
const VERSION = '2.0.
|
|
14
|
+
const VERSION = '2.0.2';
|
|
15
15
|
|
|
16
16
|
// Colors (respects NO_COLOR)
|
|
17
17
|
const noColor = process.env.NO_COLOR !== undefined;
|
|
@@ -98,6 +98,7 @@ function runInbox(subCmd, hubPath, name) {
|
|
|
98
98
|
|
|
99
99
|
// Doctor command
|
|
100
100
|
function doctor(hubPath) {
|
|
101
|
+
console.log(`cn v${VERSION}`);
|
|
101
102
|
info(`Checking health...`);
|
|
102
103
|
console.log('');
|
|
103
104
|
|