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.
This commit is contained in:
p-sw 2024-06-11 16:31:23 +09:00
parent 2deae4af79
commit 8062f02a78

View File

@ -18,7 +18,6 @@ import {SearchBox} from '../components/SearchBox.js'
import {getComponentsInstalled} from '../helpers/path.js' import {getComponentsInstalled} from '../helpers/path.js'
import {Choice} from '../components/Choice.js' import {Choice} from '../components/Choice.js'
import {colorize} from '@oclif/core/ux' import {colorize} from '@oclif/core/ux'
import {Registry} from '../const.js'
function Generator() { function Generator() {
let complete: boolean = false let complete: boolean = false
@ -224,8 +223,8 @@ export default class Add extends Command {
return return
} }
const componentFileContent = (await componentFileContentResponse.text()).replaceAll( const componentFileContent = (await componentFileContentResponse.text()).replaceAll(
/import\s+{[^}]*}\s+from\s+"..\/shared"/g, /import\s+{[^}]*}\s+from\s+"@pswui-lib\/shared@[0-9.]+"/g,
(match) => match.replace(/..\/shared/, resolvedConfig.import.lib), (match) => match.replace(/@pswui-lib\/(shared@[0-9.]+)/, `${resolvedConfig.import.lib}/$1`),
) )
await writeFile(componentFile, componentFileContent) await writeFile(componentFile, componentFileContent)
componentFileOra.succeed('Component is successfully installed!') componentFileOra.succeed('Component is successfully installed!')