cli: Set admin command to hidden

Signed-off-by: Marcus Eide <eide@spotify.com>
This commit is contained in:
Marcus Eide
2023-02-09 14:38:42 +01:00
committed by Philipp Hugenroth
parent 7af6c36adf
commit e1754adefa
+1 -1
View File
@@ -27,7 +27,7 @@ const configOption = [
export function registerAdminCommand(program: Command) {
program
.command('admin')
.command('admin', { hidden: true })
.description('Get help setting up your Backstage App.')
.action(lazy(() => import('./admin').then(m => m.command)));
}