Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added scripts to clear parsers/in and parsers/out after build:reference #731

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion src/scripts/parsers/reference.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { cloneLibraryRepo, p5RepoUrl, readFile } from "../utils";
import { cloneLibraryRepo,cleanUpDirectory, p5RepoUrl, readFile } from "../utils";
import fs from "fs/promises";
import { exec, execSync } from "child_process";
import path from "path";
Expand All @@ -13,6 +13,10 @@ const localPath = path.join(__dirname, "in", "p5.js");
const localSoundPath = path.join(__dirname, "in", "p5.sound.js");
const yuidocOutputPath = path.join(__dirname, "out")

//Directory to clean after cloning the libraries
const parsersInPath = path.join(__dirname, "in");
const parsersOutPath = path.join(__dirname, "out");

/**
* Main function to clone the p5.js library and save the YUIDoc output to a file
*/
Expand Down Expand Up @@ -77,6 +81,10 @@ export const parseLibraryReference =
);

await serveYuidocOutput('data');

//delete the cloned directories
await cleanUpDirectory(parsersInPath );
await cleanUpDirectory(parsersOutPath );
return combined;
};

Expand Down
12 changes: 12 additions & 0 deletions src/scripts/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,3 +304,15 @@ export const rewriteRelativeMdLinks = (markdownText: string): string => {
return `[${linkText}](${updatedUrl})`;
});
};
/**
* Deletes the contents of the given directory.
* @param dirPath Path to the directory to clean up.
*/
export const cleanUpDirectory = async (dirPath: string) => {
try {
await fs.rm(dirPath, { recursive: true, force: true });
console.log(`Cleaned up directory: ${dirPath}`);
} catch (err) {
console.error(`Error cleaning up directory ${dirPath}: ${err}`);
}
};