We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If the number of (nested) files in a subfolder exceeds 64k, file.getFilteredFileList throws an error at https://github.com/requirejs/r.js/blob/master/build/jslib/node/file.js#L131
file.getFilteredFileList
{ [Error: RangeError: Maximum call stack size exceeded] originalError: [RangeError: Maximum call stack size exceeded] }
We encountered this after adding several new libraries to node_modules, resulting in an attempt to push 140k dirFiles onto the files array.
The text was updated successfully, but these errors were encountered:
Fixes requirejs#921, getFilteredFileList with more than 64k entries
45e2e3b
1bc77e5
No branches or pull requests
If the number of (nested) files in a subfolder exceeds 64k,
file.getFilteredFileList
throws an error at https://github.com/requirejs/r.js/blob/master/build/jslib/node/file.js#L131We encountered this after adding several new libraries to node_modules, resulting in an attempt to push 140k dirFiles onto the files array.
The text was updated successfully, but these errors were encountered: