UNPKG

@mazaherimahdi/gptcommit

Version:

A tool for creating commit messages using GPT-3

13 lines (11 loc) 280 B
#!/usr/bin/env node import yargs from 'yargs'; import { hideBin } from 'yargs/helpers'; yargs(hideBin(process.argv)) // Use the commands directory to scaffold. .commandDir('commands') // Enable strict mode. .strict() // Useful aliases. .alias({ h: 'help' }) .argv;