2019-08-14 02:03:29 +02:00
|
|
|
#!/usr/bin/env -S deno run --allow-run --allow-write --allow-read --allow-env
|
2019-01-02 17:56:17 +03:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-03-09 02:41:47 +09:00
|
|
|
const { exit, args, execPath } = Deno;
|
2019-01-27 13:19:56 +09:00
|
|
|
import { parse } from "./flags/mod.ts";
|
2019-03-09 02:41:47 +09:00
|
|
|
import { xrun } from "./prettier/util.ts";
|
2019-01-27 13:19:56 +09:00
|
|
|
|
2019-03-12 14:51:51 +09:00
|
|
|
async function main(opts): Promise<void> {
|
2019-02-02 00:16:39 +09:00
|
|
|
const args = [
|
2019-08-14 02:03:29 +02:00
|
|
|
execPath(),
|
2019-05-04 17:33:50 +02:00
|
|
|
"run",
|
2019-02-02 00:16:39 +09:00
|
|
|
"--allow-write",
|
2019-02-09 15:41:05 -05:00
|
|
|
"--allow-read",
|
2019-02-02 00:16:39 +09:00
|
|
|
"prettier/main.ts",
|
|
|
|
"--ignore",
|
2019-03-07 23:01:40 -08:00
|
|
|
"node_modules",
|
|
|
|
"--ignore",
|
2019-02-02 00:16:39 +09:00
|
|
|
"testdata",
|
|
|
|
"--ignore",
|
2019-05-21 20:23:23 +08:00
|
|
|
"vendor",
|
|
|
|
"--write"
|
2019-02-02 00:16:39 +09:00
|
|
|
];
|
|
|
|
|
|
|
|
if (opts.check) {
|
|
|
|
args.push("--check");
|
2019-01-27 13:19:56 +09:00
|
|
|
}
|
2019-02-02 00:16:39 +09:00
|
|
|
|
2019-08-14 02:03:29 +02:00
|
|
|
args.push(".");
|
|
|
|
|
2019-02-02 00:16:39 +09:00
|
|
|
exit((await xrun({ args }).status()).code);
|
2018-12-18 18:56:12 -05:00
|
|
|
}
|
|
|
|
|
2019-01-27 13:19:56 +09:00
|
|
|
main(parse(args));
|