nx/packages/react/src/utils/format-file.ts

10 lines
234 B
TypeScript

import { format } from 'prettier';
import { stripIndents } from '@nx/devkit';
export function formatFile(content, ...values) {
return format(stripIndents(content, values), {
singleQuote: true,
parser: 'typescript',
});
}