@coana-tech/cli 14.12.113 → 14.12.114
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 -1
- 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
|
@@ -231913,6 +231913,8 @@ async function copyForNpmAnalysis(srcDir, prefix) {
|
|
|
231913
231913
|
try {
|
|
231914
231914
|
await cp4(srcDir, tmpDir, {
|
|
231915
231915
|
recursive: true,
|
|
231916
|
+
verbatimSymlinks: true,
|
|
231917
|
+
// Preserve symlinks as symlinks instead of dereferencing them
|
|
231916
231918
|
filter: async (src) => {
|
|
231917
231919
|
const relativePath = relative15(srcDir, src);
|
|
231918
231920
|
if (relativePath === "") return true;
|
|
@@ -231921,6 +231923,9 @@ async function copyForNpmAnalysis(srcDir, prefix) {
|
|
|
231921
231923
|
return false;
|
|
231922
231924
|
}
|
|
231923
231925
|
const stats = await lstat2(src);
|
|
231926
|
+
if (stats.isSymbolicLink()) {
|
|
231927
|
+
return true;
|
|
231928
|
+
}
|
|
231924
231929
|
if (stats.isDirectory()) {
|
|
231925
231930
|
return true;
|
|
231926
231931
|
}
|
|
@@ -250829,7 +250834,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
|
|
|
250829
250834
|
}
|
|
250830
250835
|
|
|
250831
250836
|
// dist/version.js
|
|
250832
|
-
var version3 = "14.12.
|
|
250837
|
+
var version3 = "14.12.114";
|
|
250833
250838
|
|
|
250834
250839
|
// dist/cli-core.js
|
|
250835
250840
|
var { mapValues, omit, partition, pick } = import_lodash15.default;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|