refactor(cli): safeFetcher return response instead of json

This commit is contained in:
p-sw 2024-06-15 01:59:10 +09:00
parent de8a1129da
commit f6d2e2335d
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ export async function getRegistry(
const registryResponse = await safeFetch(REGISTRY_URL(branch ?? 'main'))
if (registryResponse.ok) {
const registryJson = registryResponse.json as Registry
const registryJson = (await registryResponse.response.json()) as Registry
registryJson.base = registryJson.base.replace('{branch}', branch ?? 'main')
return {

View File

@ -2,12 +2,12 @@ import fetch, {Response} from 'node-fetch'
export async function safeFetch(
url: string,
): Promise<{ok: true; json: unknown} | {ok: false; message: string; response: Response}> {
): Promise<{ok: true; response: Response} | {ok: false; message: string; response: Response}> {
const response = await fetch(url)
if (response.ok) {
return {
ok: true,
json: await response.json(),
response,
}
}