diff --git a/package.json b/package.json index d7d6c51f..06d30c5e 100644 --- a/package.json +++ b/package.json @@ -113,7 +113,7 @@ "prepare": "husky", "preinstall": "npx only-allow pnpm" }, - "version": "2.3.22-rc.17", + "version": "2.3.22-rc.18", "pnpm": { "onlyBuiltDependencies": [ "@parcel/watcher", diff --git a/scripts/smoke.ts b/scripts/smoke.ts index 7adac155..5279c6ba 100644 --- a/scripts/smoke.ts +++ b/scripts/smoke.ts @@ -42,6 +42,7 @@ async function run() { const broken: string[] = []; await Promise.all( urls.map(async (url) => { + if (url.includes('openstreetmap.org') || url.includes('unpkg.com')) return; try { const res = await fetch(url, { method: 'HEAD' }); if (res.status >= 400) {