mix/index.ts
2025-06-24 16:07:02 +01:00

12 lines
No EOL
330 B
TypeScript

import { Command } from 'commander';
import { registerCommands } from './cmd';
const program = new Command();
program
.name('mix')
.description('a declerative file-based package manager for windows.')
.version('0.0.4', '-v, --version', 'output the current version');
registerCommands(program);
program.parse();