mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
28 lines
611 B
TypeScript
Executable File
28 lines
611 B
TypeScript
Executable File
#!/usr/bin/env deno --allow-run --allow-write --allow-read
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
const { exit, args } = Deno;
|
|
import { parse } from "./flags/mod.ts";
|
|
import { xrun, executableSuffix } from "./prettier/util.ts";
|
|
|
|
async function main(opts) {
|
|
const args = [
|
|
`deno${executableSuffix}`,
|
|
"--allow-write",
|
|
"--allow-run",
|
|
"--allow-read",
|
|
"prettier/main.ts",
|
|
"--ignore",
|
|
"testdata",
|
|
"--ignore",
|
|
"vendor"
|
|
];
|
|
|
|
if (opts.check) {
|
|
args.push("--check");
|
|
}
|
|
|
|
exit((await xrun({ args }).status()).code);
|
|
}
|
|
|
|
main(parse(args));
|