yaclt
Version:
Yet Another Change Log Tool
15 lines (13 loc) • 467 B
text/typescript
import { CommandModule } from "yargs";
import { CompletionFishCommand } from "./completion-fish";
import { NewCommand } from "./new";
import { PrepareReleaseCommand } from "./prepare-release";
import { ValidateCommand } from "./validate";
// idk a way around this
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export const Commands: CommandModule<any, any>[] = [
NewCommand,
ValidateCommand,
PrepareReleaseCommand,
CompletionFishCommand,
];