UNPKG

bismillahcss

Version:

The next-gen utility-first CSS framework for modern, futuristic web development.

18 lines (13 loc) 418 B
#!/usr/bin/env node import { Command } from 'commander' import { init } from './commands/init' import { add } from './commands/add' import { version } from '../package.json' const program = new Command() program .name('bismillahcss') .description('Futuristic CSS framework for modern web development') .version(version) program.addCommand(init) program.addCommand(add) program.parse()