@@ -9,6 +9,7 @@ import { filter } from './commands/filter.js';
99import { get } from './commands/get.js' ;
1010import { install } from './commands/install.js' ;
1111import { list } from './commands/list.js' ;
12+ import { open } from './commands/open.js' ;
1213import { reset } from './commands/reset.js' ;
1314import { scan } from './commands/scan.js' ;
1415import { search } from './commands/search.js' ;
@@ -20,7 +21,7 @@ const program = new Command();
2021program . addCommand ( configCmd ) ;
2122
2223// Dynamically add commands for each registry type.
23- const types = [ RegistryType . Plugins , RegistryType . Presets , RegistryType . Projects ] ;
24+ const types = [ RegistryType . Apps , RegistryType . Plugins , RegistryType . Presets , RegistryType . Projects ] ;
2425for ( const type of types ) {
2526 const command : Command = program . command ( type ) ;
2627 const manager : ManagerLocal = new ManagerLocal ( type as RegistryType , isTests ( ) ? CONFIG_LOCAL_TEST : undefined ) ;
@@ -31,6 +32,7 @@ for (const type of types) {
3132 get ( command , manager ) ;
3233 install ( command , manager ) ;
3334 list ( command , manager ) ;
35+ open ( command , manager ) ;
3436 reset ( command , manager ) ;
3537 scan ( command , manager ) ;
3638 search ( command , manager ) ;
0 commit comments