Skip to content

Commit 8274f2f

Browse files
committed
feat: improve cli ux
1 parent b03383a commit 8274f2f

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/index.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,13 @@ program
2323
handleCommandResult(result)
2424
})
2525

26-
program
27-
.command('add-project')
28-
.description('Add a project with GitHub organizations')
26+
const project = program
27+
.command('project')
28+
.description('Project management')
29+
30+
project
31+
.command('add')
32+
.description('Add a project with a list of GitHub organizations (optional)')
2933
.requiredOption('-n, --name <name>', 'Project name')
3034
.option('-g, --github-orgs <githubOrgUrls...>', 'GitHub organization URLs')
3135
.action(async (options) => {

0 commit comments

Comments
 (0)