We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6b221d commit 411a103Copy full SHA for 411a103
1 file changed
main.ts
@@ -14,7 +14,7 @@ async function getAllThings(repo: string): Promise<string[]> {
14
`owner:${owner} /${name}\\/.+/ package_type:container`
15
);
16
url.searchParams.set("type", "registrypackages");
17
- console.log(url)
+ console.log(url.href)
18
const response = await fetch(url);
19
return (await response.json()).payload.results
20
.map((x) => x.name)
0 commit comments