refactor(cli): update return value in registry helper

This commit updates the registry helper in the CLI package. It now returns the full component name from the registry, instead of only returning the last part of the component's path.
This commit is contained in:
p-sw 2024-06-11 13:06:06 +09:00
parent 7a82c284fc
commit 8a8508c8fb

View File

@ -28,5 +28,5 @@ export async function getComponentRealname(
registry: Registry,
componentName: keyof Registry['components'],
): Promise<string> {
return registry.components[componentName].split('/').pop() ?? ''
return registry.components[componentName]
}