You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
m3u8-downloader-TypeScript/scripts/pre-commit.ts

14 lines
278 B
TypeScript

12 months ago
#!/usr/bin/env zx
11 months ago
import { $, echo } from "zx";
12 months ago
11 months ago
echo("开始执行代码质量评估...\n");
12 months ago
12 months ago
await import("./check").catch(() => {
throw new Error("代码质量评估失败, 请检查代码");
});
12 months ago
11 months ago
echo('printf "检测通过, 创建 commit 中...\n');
12 months ago
12 months ago
await $`git add .`;