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 ba333dd commit 19780aaCopy full SHA for 19780aa
packages/schemas/tools/generate.ts
@@ -13,10 +13,6 @@ const BANNER_COMMENT = '// THIS IS A AUTO-GENERATED FILE. DO NOT MODIFY MANUALLY
13
const outDirRoot = path.resolve(`${cwd}/src`);
14
const schemas = await glob(`${schemasBasePath}/**/*.json`);
15
16
- // Clean output directory first
17
- await rm(outDirRoot, { recursive: true, force: true });
18
-
19
20
await Promise.all(schemas.map(async (schemaPath) => {
21
const name = path.parse(schemaPath).name;
22
const version = path.basename(path.dirname(schemaPath));
0 commit comments