feat(infra): route package (#10353)

This commit is contained in:
forehalo
2025-04-23 09:49:10 +00:00
parent e501e35d3d
commit 64997d4a0e
14 changed files with 654 additions and 18 deletions
+17
View File
@@ -0,0 +1,17 @@
import { readFileSync } from 'node:fs';
import { once } from 'lodash-es';
import { type BuiltInParserName, format } from 'prettier';
import { ProjectRoot } from './path';
const readConfig = once(() => {
const path = ProjectRoot.join('.prettierrc').value;
const config = JSON.parse(readFileSync(path, 'utf-8'));
return config;
});
export function prettier(content: string, parser: BuiltInParserName) {
const config = readConfig();
return format(content, { parser, ...config });
}