/
githubmirror
/
babel
Обзор
Документация
Войти
/
githubmirror
/
babel
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v8.0.3
scripts/assert-dir-git-clean.ts
20 строк
519 B
liuxingbaoyu
chore: Migrate scripts to `.ts` (#17767)
13 фев 2026, 17:26
Не верифицирован
13 фев 2026, 17:26
931ddd6
Код
Авторство
О чём код?
// Must run at a git working dir import { execSync } from "node:child_process"; const fixCommand = process.argv[2]; if (execSync("git status --porcelain=v1", { encoding: "utf8" })) { console.log( `Please re-run "${fixCommand}" and checkout the following changes to git` ); execSync("git status", { stdio: "inherit" }); if (process.env.GITHUB_ACTIONS) { console.log("::group::git diff"); execSync("git diff", { stdio: "inherit" }); console.log("::endgroup::"); } process.exitCode = 1; }