which-os 1.7.7 → 1.7.8
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/dist/cjs/cli.js +1 -1
- package/dist/esm/cli.js +1 -1
- package/package.json +2 -2
package/dist/cjs/cli.js
CHANGED
|
@@ -64,7 +64,7 @@ for (const option of options) {
|
|
|
64
64
|
const command = `is${capitalize(option.short)}`;
|
|
65
65
|
if (typeof commanderOptions[command] !== 'undefined') {
|
|
66
66
|
const result = option.fn();
|
|
67
|
-
if (
|
|
67
|
+
if (commanderOptions.verbose) {
|
|
68
68
|
console.info(option.description, result);
|
|
69
69
|
}
|
|
70
70
|
if (option.category === 'archType') {
|
package/dist/esm/cli.js
CHANGED
|
@@ -64,7 +64,7 @@ for (const option of options) {
|
|
|
64
64
|
const command = `is${capitalize(option.short)}`;
|
|
65
65
|
if (typeof commanderOptions[command] !== 'undefined') {
|
|
66
66
|
const result = option.fn();
|
|
67
|
-
if (
|
|
67
|
+
if (commanderOptions.verbose) {
|
|
68
68
|
console.info(option.description, result);
|
|
69
69
|
}
|
|
70
70
|
if (option.category === 'archType') {
|
package/package.json
CHANGED