We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ae9bf1 commit da245b8Copy full SHA for da245b8
scripts/generateClientTypesMap/index.ts
@@ -1,6 +1,5 @@
1
import { writeFile } from "node:fs/promises";
2
import { join } from "node:path";
3
-import { format } from "prettier";
4
5
import {
6
CLIENT_NAMES,
@@ -39,9 +38,6 @@ const codegenComment = `// This file is generated by scripts/generateClientTypes
39
38
fileContent += JSON.stringify(clientTypesMap);
40
fileContent += ";\n";
41
42
- await writeFile(
43
- relativeFilePath,
44
- await format(fileContent, { parser: "typescript", printWidth: 100 })
45
- );
+ await writeFile(relativeFilePath, fileContent);
46
}
47
})();
0 commit comments