This commit is contained in:
Moritz Jung 2025-01-14 22:33:47 +01:00
parent 7b50172e7d
commit da1904b164
11 changed files with 27 additions and 19 deletions

View file

@ -6,7 +6,7 @@ import { $choice as $choice, $confirm, $seq, CMD_FMT, Verboseness } from 'utils/
async function runPreconditions(): Promise<void> {
// run preconditions
await $seq(
[`bun run format`, `bun run lint:fix`, `bun run test`],
[`bun run format`, `bun run test`],
(cmd: string) => {
throw new UserError(`precondition "${cmd}" failed`);
},