Skip to content

Commit dc563e8

Browse files
authored
Merge pull request #5 from OpenPathfinder/chore/improvements
2 parents e8f6912 + 8274f2f commit dc563e8

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ The project includes a GitHub Actions workflow for continuous integration that r
128128
The pipeline runs on multiple platforms and Node.js versions to ensure maximum compatibility:
129129

130130
- **Operating Systems**: Ubuntu, Windows, and macOS
131-
- **Node.js Versions**: 18.x, 20.x, 22.x, 24.x
131+
- **Node.js Versions**: 20.x, 22.x, 24.x
132132

133133
Test coverage reports are automatically uploaded as artifacts for each platform and Node.js version combination.
134134

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)