From 6f5ec5042d12bad386a47d7c5ff63c88358a3edf Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 13:35:27 +0900 Subject: [PATCH] refactor(cli): modify return type of getComponentLibVersion Modified the return type of the function getComponentLibVersion in registry.ts. Instead of returning a string or null, it now returns an object with a boolean type 'ok' status and 'libVersion'. The 'ok' attribute indicates whether the library version is included in the registry. --- packages/cli/src/helpers/registry.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/cli/src/helpers/registry.ts b/packages/cli/src/helpers/registry.ts index 7c795f5..d9c6dff 100644 --- a/packages/cli/src/helpers/registry.ts +++ b/packages/cli/src/helpers/registry.ts @@ -34,12 +34,12 @@ export async function getComponentRealname( export async function getComponentLibVersion( registry: Registry, componentName: keyof (typeof registry)['components'], -): Promise { +): Promise<{ok: boolean; libVersion: string}> { const libVersion = registry.components[componentName].libVersion if (!registry.lib.includes(libVersion)) { - return null + return {ok: false, libVersion} } - return libVersion + return {ok: true, libVersion} } export async function getLibURL(registry: Registry, version: string): Promise {