diff --git a/tools/continuous-delivery/src/fetchFromNpm.ts b/tools/continuous-delivery/src/fetchFromNpm.ts index 52b2b3ae4..b68deb941 100644 --- a/tools/continuous-delivery/src/fetchFromNpm.ts +++ b/tools/continuous-delivery/src/fetchFromNpm.ts @@ -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(