(command: Command, session: CliSession)
| 67 | const groupName = argv[2]!; |
| 68 | const commandName = argv[3]!; |
| 69 | |
| 70 | if (groupName === 'help' || groupName === '--help' || groupName === '-h') { |
| 71 | printUsage(commands); |
| 72 | return; |
| 73 | } |
| 74 | |
| 75 | if (groupName === 'version' || groupName === '--version' || groupName === '-v') { |
| 76 | await printVersions(initOptions); |
no test coverage detected