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'))
|
const registryResponse = await safeFetch(REGISTRY_URL(branch ?? 'main'))
|
||||||
|
|
||||||
if (registryResponse.ok) {
|
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')
|
registryJson.base = registryJson.base.replace('{branch}', branch ?? 'main')
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -2,12 +2,12 @@ import fetch, {Response} from 'node-fetch'
|
|||||||
|
|
||||||
export async function safeFetch(
|
export async function safeFetch(
|
||||||
url: string,
|
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)
|
const response = await fetch(url)
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
return {
|
return {
|
||||||
ok: true,
|
ok: true,
|
||||||
json: await response.json(),
|
response,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user