refactor(cli): safeFetcher return response instead of json
This commit is contained in:
parent
de8a1129da
commit
f6d2e2335d
@ -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 {
|
||||
|
@ -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,
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user