-
Notifications
You must be signed in to change notification settings - Fork 3
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: update dependencies, require Node 18+ #23
Conversation
} | ||
|
||
return files | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
glob
and its various cousins (e.g. fast-glob
) were causing too many problems due to transitive dependencies breaking due to ESM vs CJS. So I got rid of glob
entirely.
.filter(_ => _.endsWith('/input')) | ||
.map(_ => path.resolve(root, _)) | ||
|
||
for (const dirname of inputDirs) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This function is only used internally; it did not need to be so complicated.
BREAKING CHANGE: require Node 18+