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 dd785fe commit f10ca7bCopy full SHA for f10ca7b
generate_docs.js
@@ -37,10 +37,10 @@ if (missing) {
37
shelljs.mkdir('-p', DOCGEN_PACKAGE_DIR);
38
// Register hook to cleanup temp dir
39
nodeCleanup(() => {
40
- // const symlinks = fs.readdirSync(DOCGEN_DIR)
41
- // .filter(file => fs.lstatSync(file).isSymbolicLink());
42
- // symlinks.forEach(file => fs.unlinkSync(file));
43
- // shelljs.rm('-rf', DOCGEN_DIR);
+ const symlinks = fs.readdirSync(DOCGEN_DIR)
+ .filter(file => fs.lstatSync(file).isSymbolicLink());
+ symlinks.forEach(file => fs.unlinkSync(file));
+ shelljs.rm('-rf', DOCGEN_DIR);
44
});
45
46
// Fetch all included packages (i.e., core module) to .downstream_cache
0 commit comments