@coana-tech/cli 14.12.34 → 14.12.35
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 +467 -441
- package/package.json +1 -1
- package/reachability-analyzers-cli.mjs +2 -2
- package/repos/coana-tech/alucard/alucard.jar +0 -0
- 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/package.json
CHANGED
|
@@ -94700,8 +94700,8 @@ async function prepareNpmDependencies(subprojectDir, workspaceDir, artifactIdToA
|
|
|
94700
94700
|
const transitiveDependenciesToInstall = Object.fromEntries(Object.entries(artifactIdToArtifact).filter(([_, dep]) => packageNamesToInstall.includes(getPackageName(dep))).map(([depId, dep]) => [depId, { ...dep }]));
|
|
94701
94701
|
const { installedPackages, failedPackages } = await downloadDependenciesToDir(Object.values(transitiveDependenciesToInstall), tmpDir);
|
|
94702
94702
|
const augmentedInstalledPackages = await extractDownloadedDependenciesToDir(dirToInstallDependencies, tmpDir, installedPackages);
|
|
94703
|
-
const
|
|
94704
|
-
await createSymlinksForDependenciesInRootDir(workspaceDir, augmentedInstalledPackages,
|
|
94703
|
+
const dependencyInfoForDirectDependenciesToInstall = directDependencies.map((depId) => artifactIdToArtifact[depId]).filter((dep) => packageNamesToInstall.includes(getPackageName(dep))) ?? [];
|
|
94704
|
+
await createSymlinksForDependenciesInRootDir(workspaceDir, augmentedInstalledPackages, dependencyInfoForDirectDependenciesToInstall);
|
|
94705
94705
|
await createSymlinksForEachDependency(Object.fromEntries(Object.entries(transitiveDependenciesToInstall).filter(([_identifier, depObj]) => "installedPath" in depObj)));
|
|
94706
94706
|
return { failedPackages, installedPackages };
|
|
94707
94707
|
});
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|