perf(projects): remove @soybeanjs/cli

This commit is contained in:
Soybean
2024-01-21 22:41:01 +08:00
parent dafb6fa06f
commit 41349555bf
3 changed files with 79 additions and 162 deletions

View File

@ -11,7 +11,7 @@ type CommandAction<A extends object> = (args?: A) => Promise<void> | void;
type CommandWithAction<A extends object = object> = Record<Command, { desc: string; action: CommandAction<A> }>;
interface CommandArg {
/** Execute additional command after bumping and before git commit. Defaults to 'npx soy changelog' */
/** Execute additional command after bumping and before git commit. Defaults to 'pnpm sa changelog' */
execute?: string;
/** Indicates whether to push the git commit and tag. Defaults to true */
push?: boolean;