humpty
Version:
Makes sure your changelogs mention your breaking changes
20 lines (15 loc) • 401 B
JavaScript
#!/usr/bin/env node
import meow from "meow";
import App from "./App";
const cli = meow(
`
Usage
$ humpty
Options
--oldApi Git branch or SHA where your current public API code is stored.
--newApi Git branch or SHA where your new public API code is stored.
--gitRepo Path to the git repo where your source lives.
--json Output result as JSON instead of emoji + text
`
);
App(cli.flags);