From 8062f02a78e79d26f5a6936b3c2383cc90cadb2d Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 16:31:23 +0900 Subject: [PATCH] refactor(cli): update import statement in add command The import statement in the add.tsx file of the CLI package has been updated to use the correct library name and version. This change ensures accurate reference to shared libraries, leading to better stability and interoperability. --- packages/cli/src/commands/add.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/cli/src/commands/add.tsx b/packages/cli/src/commands/add.tsx index 5047442..2f570c9 100644 --- a/packages/cli/src/commands/add.tsx +++ b/packages/cli/src/commands/add.tsx @@ -18,7 +18,6 @@ import {SearchBox} from '../components/SearchBox.js' import {getComponentsInstalled} from '../helpers/path.js' import {Choice} from '../components/Choice.js' import {colorize} from '@oclif/core/ux' -import {Registry} from '../const.js' function Generator() { let complete: boolean = false @@ -224,8 +223,8 @@ export default class Add extends Command { return } const componentFileContent = (await componentFileContentResponse.text()).replaceAll( - /import\s+{[^}]*}\s+from\s+"..\/shared"/g, - (match) => match.replace(/..\/shared/, resolvedConfig.import.lib), + /import\s+{[^}]*}\s+from\s+"@pswui-lib\/shared@[0-9.]+"/g, + (match) => match.replace(/@pswui-lib\/(shared@[0-9.]+)/, `${resolvedConfig.import.lib}/$1`), ) await writeFile(componentFile, componentFileContent) componentFileOra.succeed('Component is successfully installed!')