()
| 36 | } |
| 37 | |
| 38 | function main() { |
| 39 | const args = parseArgs(process.argv); |
| 40 | if (args.help) { |
| 41 | process.stdout.write(`${usage()}\n`); |
| 42 | return; |
| 43 | } |
| 44 | const matrix = runtime.getRuntimeAdapterMatrix(args.runtimeId); |
| 45 | process.stdout.write(args.json ? `${JSON.stringify(matrix, null, 2)}\n` : render(matrix)); |
| 46 | } |
| 47 | |
| 48 | if (require.main === module) { |
| 49 | main(); |
no test coverage detected