We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ce073d commit dee546eCopy full SHA for dee546e
scripts/native.js
@@ -37,13 +37,6 @@ async function buildPluginApiDocs(pluginId) {
37
const apiContent = createApiPage(pluginId, readme, pkgJson);
38
const fileName = `${pluginId}.md`;
39
40
- // Delete all existing generated markdown files in docs/native
41
- fs.readdirSync('docs/native').forEach((file) => {
42
- if (file.endsWith('.md')) {
43
- fs.rmSync(`docs/native/${file}`);
44
- }
45
- });
46
-
47
fs.writeFileSync(`docs/native/${fileName}`, apiContent);
48
fs.writeFileSync(`versioned_docs/version-v6/native/${fileName}`, apiContent);
49
}
0 commit comments