@coana-tech/cli 14.9.9 → 14.9.10
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/cli.mjs +7 -1
- package/package.json +1 -1
package/cli.mjs
CHANGED
|
@@ -183617,6 +183617,9 @@ var CLILogger = class {
|
|
|
183617
183617
|
error(message2, ...meta) {
|
|
183618
183618
|
this.wrapper(() => this.logger.error(message2, ...meta));
|
|
183619
183619
|
}
|
|
183620
|
+
isDebugEnabled() {
|
|
183621
|
+
return this.logger instanceof Console || this.logger.isDebugEnabled();
|
|
183622
|
+
}
|
|
183620
183623
|
/**
|
|
183621
183624
|
* End the logger instance and return a promise
|
|
183622
183625
|
* that resolves when the logger is finished.
|
|
@@ -197497,6 +197500,9 @@ var CLILogger2 = class {
|
|
|
197497
197500
|
error(message2, ...meta) {
|
|
197498
197501
|
this.wrapper(() => this.logger.error(message2, ...meta));
|
|
197499
197502
|
}
|
|
197503
|
+
isDebugEnabled() {
|
|
197504
|
+
return this.logger instanceof Console2 || this.logger.isDebugEnabled();
|
|
197505
|
+
}
|
|
197500
197506
|
/**
|
|
197501
197507
|
* End the logger instance and return a promise
|
|
197502
197508
|
* that resolves when the logger is finished.
|
|
@@ -215378,7 +215384,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
|
|
|
215378
215384
|
}
|
|
215379
215385
|
|
|
215380
215386
|
// dist/version.js
|
|
215381
|
-
var version2 = "14.9.
|
|
215387
|
+
var version2 = "14.9.10";
|
|
215382
215388
|
|
|
215383
215389
|
// dist/cli-core.js
|
|
215384
215390
|
var { omit, partition, pick } = import_lodash15.default;
|