项目文件夹

文件
T
2024-05-13 09:41:06 +08:00

19 行
435 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`]).catch((out: ProcessOutput) => {
printObject(out);
throw new Error(out.stdout);
});