项目文件夹

文件
T
2024-04-05 22:36:13 +08:00

21 行
467 B
TypeScript

#!/usr/bin/env zx
import { $, echo } from "zx";
import type { ProcessOutput } from "zx";
import { printObject } from "./utils";
echo("开始执行代码质量评估...\n");
await $`pnpm spellcheck`.catch((out: ProcessOutput) => {
printObject(out);
throw new Error(out.stdout);
});
// check type and stage
await Promise.all([$`pnpm types`, $`pnpm lint-staged`]).catch(
(out: ProcessOutput) => {
printObject(out);
throw new Error(out.stdout);
},
);