This commit is contained in:
di-sukharev
2023-03-06 22:54:12 +08:00
commit 4edb9bd7f7
14 changed files with 3146 additions and 0 deletions
Executable
+30
View File
@@ -0,0 +1,30 @@
#!/usr/bin/env node
import { cli } from 'cleye';
import packageJSON from '../package.json';
import { configCommand } from './commands/config';
import { hookCommand, isHookCalled } from './commands/githook.js';
import { prepareCommitMessageHook } from './commands/prepare-commit-msg-hook';
import { commit } from './commands/commit';
const rawArgv = process.argv.slice(2);
cli(
{
version: packageJSON.version,
name: 'opencommit',
commands: [configCommand, hookCommand],
flags: {},
ignoreArgv: (type) => type === 'unknown-flag' || type === 'argument',
help: { description: packageJSON.description }
},
() => {
if (isHookCalled) {
prepareCommitMessageHook();
} else {
commit();
}
},
rawArgv
);