diff options
| author | 木杉 <zhmushan@qq.com> | 2019-01-21 23:35:07 +0800 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-21 09:35:07 -0600 |
| commit | d710f9427af35363fb7f9b82d09eae5bd8342a63 (patch) | |
| tree | 62846aa4ebbc234434105c868dfa24ee1f77ff90 /format.ts | |
| parent | 52fdf581a8dae226da7a7d5eae4498071a98eed2 (diff) | |
fix format (denoland/deno_std#140)
Original: https://github.com/denoland/deno_std/commit/61a3911be7e01273e13bf35a3a16285f413f0b70
Diffstat (limited to 'format.ts')
| -rwxr-xr-x | format.ts | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -27,11 +27,7 @@ async function main() { await checkVersion(); const prettier = run({ - args: [ - "bash", - "-c", - "prettier --write *.ts */*.ts */**/*.ts *.md */*.md */**/*.md" - ] + args: ["bash", "-c", "prettier --write '**/*.ts' '**/*.md'"] }); const s = await prettier.status(); exit(s.code); |
