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
require
module
exports
Bug
Using require.undef() with the recursive flag un-defines some fundamental modules that shouldn't be undefined.
require.undef()
Code
require.undef('some/mid', true); define([ 'require', 'module', 'exports' ], (require, module, exports) => { /* ... */ });
Expected behavior:
Works without error.
Actual behavior:
Receive errors about "unable to load module require from parent..."
The text was updated successfully, but these errors were encountered:
Undefining a module no longer undefines special modules, issue dojo#128
b619a26
Undefining a module no longer undefines special modules, issue #128 (#…
020f647
…130)
rorticus
No branches or pull requests
Bug
Using
require.undef()
with the recursive flag un-defines some fundamental modules that shouldn't be undefined.Code
Expected behavior:
Works without error.
Actual behavior:
Receive errors about "unable to load module
require
from parent..."The text was updated successfully, but these errors were encountered: