diff options
| author | Yoshiya Hinosawa <stibium121@gmail.com> | 2019-02-02 00:16:39 +0900 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-01 10:16:39 -0500 |
| commit | 0eb1a49b387601014f6f8eec84128988d2ad6b62 (patch) | |
| tree | c10501285e48e07c7a79c841deda68b6f211cb19 /prettier/prettier.ts | |
| parent | e6d1b5ed3e79c26825017e25ae6c229aeb6fefa8 (diff) | |
Add reusable prettier wrapper CLI (denoland/deno_std#165)
This also fixes an issue with the path on azure-pipelines.
Original: https://github.com/denoland/deno_std/commit/e7837ff0f007d8f2175ec58ae3065dabfb4823f1
Diffstat (limited to 'prettier/prettier.ts')
| -rw-r--r-- | prettier/prettier.ts | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/prettier/prettier.ts b/prettier/prettier.ts index 84b815377..67099c5ca 100644 --- a/prettier/prettier.ts +++ b/prettier/prettier.ts @@ -1,7 +1,8 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -import "./standalone.js"; -import "./parser_typescript.js"; -import "./parser_markdown.js"; +import "./vendor/standalone.js"; +import "./vendor/parser_typescript.js"; +import "./vendor/parser_babylon.js"; +import "./vendor/parser_markdown.js"; // TODO: provide decent type declarions for these const { prettier, prettierPlugins } = window as any; |
