2019-02-01 10:16:39 -05:00
|
|
|
# prettier
|
|
|
|
|
|
|
|
Prettier APIs and tools for deno
|
|
|
|
|
|
|
|
## Use as a CLI
|
|
|
|
|
|
|
|
To formats the source files, run:
|
|
|
|
|
|
|
|
```console
|
2019-03-06 10:24:53 -05:00
|
|
|
deno --allow-run --allow-write https://deno.land/std/prettier/main.ts
|
2019-02-01 10:16:39 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
You can format only specific files by passing the arguments.
|
|
|
|
|
|
|
|
```console
|
2019-03-06 10:24:53 -05:00
|
|
|
deno --allow-run --allow-write https://deno.land/std/prettier/main.ts path/to/script.ts
|
2019-02-01 10:16:39 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
You can format files on specific directory by passing the directory's path.
|
|
|
|
|
|
|
|
```console
|
2019-03-06 10:24:53 -05:00
|
|
|
deno --allow-run --allow-write https://deno.land/std/prettier/main.ts path/to/script.ts
|
2019-02-01 10:16:39 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
## Use API
|
|
|
|
|
|
|
|
You can use APIs of prettier as the following:
|
|
|
|
|
|
|
|
```ts
|
|
|
|
import {
|
|
|
|
prettier,
|
|
|
|
prettierPlugins
|
2019-03-06 10:24:53 -05:00
|
|
|
} from "https://deno.land/std/prettier/prettier.ts";
|
2019-02-01 10:16:39 -05:00
|
|
|
|
|
|
|
prettier.format("const x = 1", {
|
|
|
|
parser: "babel",
|
|
|
|
plugins: prettierPlugins
|
|
|
|
}); // => "const x = 1;"
|
|
|
|
```
|