Skip to content

Commit

Permalink
[chore] tmp hide checker of packages count in prerelease job
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyabrower committed Nov 18, 2024
1 parent 380f175 commit 0032e98
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tools/continuous-delivery/src/fetchFromNpm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ export const fetchFromNpm = async (filter?: string[]) => {
}
>('https://registry.npmjs.org/-/v1/search?text=@semcore/&size=250');

if (npmSearchResult.total !== npmSearchResult.objects.length) {
throw new Error(
'Gosh, seems like our npm search unable to find all packages at once, need to update search',
);
}
// if (npmSearchResult.total !== npmSearchResult.objects.length) {
// throw new Error(
// 'Gosh, seems like our npm search unable to find all packages at once, need to update search',
// );
// }

const currentVersions: { [packageName: string]: { version: string } & PackageNpmRegistry } = {};
const objectsToFetch = npmSearchResult.objects.filter(
Expand Down

0 comments on commit 0032e98

Please sign in to comment.