@coana-tech/cli 14.8.1 → 14.8.3
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 +14 -6
- package/package.json +1 -1
package/cli.mjs
CHANGED
|
@@ -177707,7 +177707,18 @@ var DOCKER_ENV_WHITE_LIST = [
|
|
|
177707
177707
|
"_USER",
|
|
177708
177708
|
"PUBLIC_API_URL",
|
|
177709
177709
|
"COANA_REPORT_ID",
|
|
177710
|
-
"COANA_API_KEY"
|
|
177710
|
+
"COANA_API_KEY",
|
|
177711
|
+
"NODE_AUTH_TOKEN",
|
|
177712
|
+
"PIP_INDEX_URL",
|
|
177713
|
+
"PIP_EXTRA_INDEX_URL",
|
|
177714
|
+
"PIP_TRUSTED_HOST",
|
|
177715
|
+
"MAVEN_OPTS",
|
|
177716
|
+
"GRADLE_OPTS",
|
|
177717
|
+
"GEM_HOST_API_KEY",
|
|
177718
|
+
"COMPOSER_AUTH",
|
|
177719
|
+
"CARGO_REGISTRY_TOKEN",
|
|
177720
|
+
"NUGET_AUTH_TOKEN",
|
|
177721
|
+
"GOPRIVATE"
|
|
177711
177722
|
];
|
|
177712
177723
|
|
|
177713
177724
|
// ../other-modules-communicator/src/other-modules-communicator.ts
|
|
@@ -177751,10 +177762,7 @@ var OtherModulesCommunicator = class {
|
|
|
177751
177762
|
}
|
|
177752
177763
|
}
|
|
177753
177764
|
if (cmd === "getWorkspacePathsMultipleSubprojects")
|
|
177754
|
-
return `${_cmdStr()}: (${packageManagerName}) ${abbreviateList(
|
|
177755
|
-
subprojects.map((sp) => relative7(this.rootWorkingDir, sp) || "."),
|
|
177756
|
-
10
|
|
177757
|
-
)}`;
|
|
177765
|
+
return `${_cmdStr()}: (${packageManagerName}) ${abbreviateList(subprojects, 10)}`;
|
|
177758
177766
|
return `${_cmdStr()}: (${packageManagerName}) ${relative7(this.rootWorkingDir, subprojectPath) || "."}`;
|
|
177759
177767
|
}
|
|
177760
177768
|
getSpinnerTextForReachabilityAnalyzerCommand(cmd, ecosystem, subprojectPath, workspacePath) {
|
|
@@ -195025,7 +195033,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
|
|
|
195025
195033
|
}
|
|
195026
195034
|
|
|
195027
195035
|
// dist/version.js
|
|
195028
|
-
var version2 = "14.8.
|
|
195036
|
+
var version2 = "14.8.3";
|
|
195029
195037
|
|
|
195030
195038
|
// dist/cli-core.js
|
|
195031
195039
|
var { omit, partition, pick } = import_lodash15.default;
|