mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 10:59:13 +00:00
chore(tools): update deprecated commands in format and lint tool (#16864)
Updates tools/format.js and tools/lint.js from Deno.spawn to Deno.Command API.
This commit is contained in:
parent
824cb485c5
commit
0a82f3c0e9
2 changed files with 21 additions and 10 deletions
|
@ -5,12 +5,15 @@ import { getPrebuiltToolPath, join, ROOT_PATH } from "./util.js";
|
|||
async function dprint() {
|
||||
const configFile = join(ROOT_PATH, ".dprint.json");
|
||||
const execPath = getPrebuiltToolPath("dprint");
|
||||
const { success } = await Deno.spawn(execPath, {
|
||||
const cmd = new Deno.Command(execPath, {
|
||||
args: ["fmt", "--config=" + configFile],
|
||||
stdout: "inherit",
|
||||
stderr: "inherit",
|
||||
});
|
||||
if (!success) {
|
||||
|
||||
const { code } = await cmd.output();
|
||||
|
||||
if (code > 0) {
|
||||
throw new Error("dprint failed");
|
||||
}
|
||||
}
|
||||
|
@ -20,12 +23,14 @@ async function main() {
|
|||
await dprint();
|
||||
|
||||
if (Deno.args.includes("--check")) {
|
||||
const { success, stdout } = await Deno.spawn("git", {
|
||||
const cmd = new Deno.Command("git", {
|
||||
args: ["status", "-uno", "--porcelain", "--ignore-submodules"],
|
||||
stderr: "inherit",
|
||||
});
|
||||
|
||||
if (!success) {
|
||||
const { code, stdout } = await cmd.output();
|
||||
|
||||
if (code > 0) {
|
||||
throw new Error("git status failed");
|
||||
}
|
||||
const out = new TextDecoder().decode(stdout);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue