@prettier/sync
v0.5.2
Published
Synchronous version of Prettier
Downloads
525,795
Maintainers
Keywords
Readme
@prettier/sync
Synchronous version of Prettier
Installation
yarn add prettier @prettier/sync
Usage
import synchronizedPrettier from "@prettier/sync";
synchronizedPrettier.format("foo( )", { parser: "babel" });
// => 'foo();\n'
This package is a simple wrapper of make-synchronized
.
For more complex use cases, it more reasonable to extract functionality into a separate file, and run with make-synchronized
, synckit
, or make-synchronous
etc.
Example:
import * as fs from "node:fs/promises";
import * as prettier from "prettier";
import makeSynchronized from "make-synchronized";
export default makeSynchronized(import.meta, async function formatFile(file) {
const config = await prettier.resolveConfig(file);
const content = await fs.readFile(file, "utf8");
const formatted = await prettier.format(content, {
...config,
filepath: file,
});
await fs.writeFile(file, formatted);
});
createSynchronizedPrettier(options)
options
Type: object
prettierEntry
Type: string | URL
Path or URL to prettier entry.
import { createSynchronizedPrettier } from "@prettier/sync";
const synchronizedPrettier = createSynchronizedPrettier({
prettierEntry: "/path/to/prettier/index.js",
});
synchronizedPrettier.format("foo( )", { parser: "babel" });
// => 'foo();\n'