From 7c3459076a82c21c219bbf4d7f61ac0d1e6977d3 Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 13:30:52 +0900 Subject: [PATCH] feat(cli): add helper functions for registry management This commit introduces three new async functions in the registry.ts file to assist with CLI operations. These include methods to get component names, retrieve library versions, and fetch library URLs. --- packages/cli/src/helpers/registry.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages/cli/src/helpers/registry.ts b/packages/cli/src/helpers/registry.ts index dcecebd..7c795f5 100644 --- a/packages/cli/src/helpers/registry.ts +++ b/packages/cli/src/helpers/registry.ts @@ -30,3 +30,18 @@ export async function getComponentRealname( ): Promise { return registry.components[componentName].name } + +export async function getComponentLibVersion( + registry: Registry, + componentName: keyof (typeof registry)['components'], +): Promise { + const libVersion = registry.components[componentName].libVersion + if (!registry.lib.includes(libVersion)) { + return null + } + return libVersion +} + +export async function getLibURL(registry: Registry, version: string): Promise { + return registry.base + registry.paths.lib.replace('{version}', version) +}