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

fix: ensure output directory exists before running generators #234

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

bjohansebas
Copy link
Member

While testing this, I realized that there is no verification when --output is a file or does not exist.

}
} catch (err) {
if (err.code === 'ENOENT') {
mkdirSync(extra.output, { recursive: true });
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would think that the expected behavior would be to create a directory if it does not exist.

@bjohansebas bjohansebas marked this pull request as ready for review March 24, 2025 19:53
@bjohansebas bjohansebas requested a review from a team as a code owner March 24, 2025 19:53
@ovflowd
Copy link
Member

ovflowd commented Mar 24, 2025

I don’t think we should do this. The process will error anyways if the path is wrong or not a directory.

@bjohansebas
Copy link
Member Author

You're right about when it's not a directory, but creating the directory would be fine when it doesn't exist. WDYT?

@avivkeller
Copy link
Member

I don’t think we should do this. The process will error anyways if the path is wrong or not a directory.

Contrarily, I feel like when I pass a directory as the output, it should be created if it doesn't exist. This is the behavior of many other tools, for example, git clone

} catch (err) {
if (err.code === 'ENOENT') {
mkdir(extra.output, { recursive: true });
}
Copy link
Member

@avivkeller avivkeller Mar 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
}
} else throw err;

We should probably not swallow the error in other cases

@ovflowd
Copy link
Member

ovflowd commented Mar 24, 2025

You're right about when it's not a directory, but creating the directory would be fine when it doesn't exist. WDYT?

I believe we should avoid handling directory creation ourselves. There are several potential issues, such as lacking directory creation permissions or the need to create directories recursively. These complexities can lead to complications that may not be worth addressing.

Ultimately, the users of this tool are likely to be tech-savvy individuals who will understand any errors that arise and can address them accordingly. After all, this tool is intended for Node.js collaborators rather than end-users. That's just my perspective :)

@avivkeller
Copy link
Member

Just to clarify, if you rebase to include the latest changes, will this error out if no output is specified?

@@ -51,6 +52,16 @@ const createGenerator = markdownInput => {
* @param {import('./generators/types.d.ts').GeneratorOptions} options The options for the generator runtime
*/
const runGenerators = async ({ generators, ...extra }) => {
try {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I do believe at the very least this code should live somewhere else, and not here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants