mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
915b4f520b
Original: 434007b8ab
30 lines
648 B
TypeScript
Executable file
30 lines
648 B
TypeScript
Executable file
#!/usr/bin/env deno run --allow-run --allow-write --allow-read
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
const { exit, args, execPath } = Deno;
|
|
import { parse } from "./flags/mod.ts";
|
|
import { xrun } from "./prettier/util.ts";
|
|
|
|
async function main(opts): Promise<void> {
|
|
const args = [
|
|
execPath,
|
|
"run",
|
|
"--allow-write",
|
|
"--allow-read",
|
|
"prettier/main.ts",
|
|
"--ignore",
|
|
"node_modules",
|
|
"--ignore",
|
|
"testdata",
|
|
"--ignore",
|
|
"vendor",
|
|
"--write"
|
|
];
|
|
|
|
if (opts.check) {
|
|
args.push("--check");
|
|
}
|
|
|
|
exit((await xrun({ args }).status()).code);
|
|
}
|
|
|
|
main(parse(args));
|