Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(openui5-snapshot-test): avoid npmjs search when filtering libraries #482

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions test-packages/openui5-snapshot-test/lib/download-sdk.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,11 @@ async function main() {
const pkgJson = require("../package.json");
const version = pkgJson.snapshot.version;
const ui5LibsMeta = await getSAPUI5LibsMeta(version);
const possibleOpenUI5LibNames = await getOpenUI5PossibleLibNames();
const openUI5Meta = pick(ui5LibsMeta, possibleOpenUI5LibNames);
const openUI5Meta = Object.fromEntries(
Object.entries(ui5LibsMeta).filter(
([name, info]) => info.npmPackageName?.startsWith("@openui5")
)
);
const allDependentOpenUI5Libs = expandTransitiveDeps(
pkgJson.snapshot.libs,
openUI5Meta
Expand Down
Loading