humpty
Version:
Makes sure your changelogs mention your breaking changes
25 lines (17 loc) • 634 B
JavaScript
;
var _meow = require("meow");
var _meow2 = _interopRequireDefault(_meow);
var _App = require("./App");
var _App2 = _interopRequireDefault(_App);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
const cli = (0, _meow2.default)(`
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
`);
(0, _App2.default)(cli.flags);