fix(cli): replace old getAvailableComponentNames to Object.keys
This commit is contained in:
parent
17ea42fe48
commit
78fe5d9b0f
@ -1,7 +1,7 @@
|
|||||||
import {Command, Args, Flags} from '@oclif/core'
|
import {Command, Args, Flags} from '@oclif/core'
|
||||||
import {render} from 'ink'
|
import {render} from 'ink'
|
||||||
import {SearchBox} from '../components/SearchBox.js'
|
import {SearchBox} from '../components/SearchBox.js'
|
||||||
import {getAvailableComponentNames, getRegistry} from '../helpers/registry.js'
|
import {getRegistry} from '../helpers/registry.js'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
|
||||||
export default class Search extends Command {
|
export default class Search extends Command {
|
||||||
@ -28,7 +28,7 @@ export default class Search extends Command {
|
|||||||
this.error(registryResult.message)
|
this.error(registryResult.message)
|
||||||
}
|
}
|
||||||
const registry = registryResult.registry
|
const registry = registryResult.registry
|
||||||
const componentNames = await getAvailableComponentNames(registry)
|
const componentNames = Object.keys(registry.components)
|
||||||
|
|
||||||
await render(
|
await render(
|
||||||
<SearchBox
|
<SearchBox
|
||||||
|
Loading…
x
Reference in New Issue
Block a user