@coana-tech/cli 14.12.161 → 14.12.162
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 +6 -6
- package/package.json +1 -1
- package/repos/coana-tech/goana/bin/goana-darwin-amd64.gz +0 -0
- package/repos/coana-tech/goana/bin/goana-darwin-arm64.gz +0 -0
- package/repos/coana-tech/goana/bin/goana-linux-amd64.gz +0 -0
- package/repos/coana-tech/goana/bin/goana-linux-arm64.gz +0 -0
- package/repos/coana-tech/javap-service/javap-service.jar +0 -0
package/cli.mjs
CHANGED
|
@@ -234167,9 +234167,9 @@ ${Array.from(upgrades).map(([idx, upgradeVersion]) => ` ${prettyPrintPurlUpgrade
|
|
|
234167
234167
|
upgrades: upgrades2,
|
|
234168
234168
|
artifacts,
|
|
234169
234169
|
rangeStyle: options.rangeStyle,
|
|
234170
|
-
// Note! picomatch
|
|
234171
|
-
wsFilter: (0, import_picomatch10.default)(options.include?.map((s6) => s6 || ".") ?? [".", "**"], {
|
|
234172
|
-
ignore: options.exclude?.map((s6) => s6 || ".")
|
|
234170
|
+
// Note! picomatch - normalize trailing slashes as they cause matching issues
|
|
234171
|
+
wsFilter: (0, import_picomatch10.default)(options.include?.map((s6) => (s6 || ".").replace(/\/+$/, "") || ".") ?? [".", "**"], {
|
|
234172
|
+
ignore: options.exclude?.map((s6) => (s6 || ".").replace(/\/+$/, "") || ".")
|
|
234173
234173
|
}),
|
|
234174
234174
|
statusUpdater
|
|
234175
234175
|
};
|
|
@@ -234196,8 +234196,8 @@ ${Array.from(upgrades).map(([idx, upgradeVersion]) => ` ${prettyPrintPurlUpgrade
|
|
|
234196
234196
|
if (supportedSubprojects.length === 0) {
|
|
234197
234197
|
throw new Error(`No supported projects found in ${rootDir}.`);
|
|
234198
234198
|
}
|
|
234199
|
-
const wsFilter = (0, import_picomatch10.default)(options.include?.map((s6) => s6 || ".") ?? [".", "**"], {
|
|
234200
|
-
ignore: options.exclude?.map((s6) => s6 || ".")
|
|
234199
|
+
const wsFilter = (0, import_picomatch10.default)(options.include?.map((s6) => (s6 || ".").replace(/\/+$/, "") || ".") ?? [".", "**"], {
|
|
234200
|
+
ignore: options.exclude?.map((s6) => (s6 || ".").replace(/\/+$/, "") || ".")
|
|
234201
234201
|
});
|
|
234202
234202
|
const subprojectPromiseQueue = new PromiseQueue(Number(options.concurrency));
|
|
234203
234203
|
supportedSubprojects.forEach((subproject) => {
|
|
@@ -251277,7 +251277,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
|
|
|
251277
251277
|
}
|
|
251278
251278
|
|
|
251279
251279
|
// dist/version.js
|
|
251280
|
-
var version3 = "14.12.
|
|
251280
|
+
var version3 = "14.12.162";
|
|
251281
251281
|
|
|
251282
251282
|
// dist/cli-core.js
|
|
251283
251283
|
var { mapValues, omit, partition, pickBy: pickBy2 } = import_lodash15.default;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|