/
githubmirror
/
babel
Обзор
Документация
Войти
/
githubmirror
/
babel
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v7.28.1
scripts/assert-dir-git-clean.js
20 строк
519 B
Huáng Jùnliàng
Enforce node protocol import (#17207)
31 мар 2025, 17:49
Не верифицирован
31 мар 2025, 17:49
317e332
Код
Авторство
О чём код?
// 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; }