-
-
Notifications
You must be signed in to change notification settings - Fork 33.1k
Closed
Labels
moduleIssues and PRs related to the module subsystem.Issues and PRs related to the module subsystem.
Description
- Version: v4.4.0, v7.0.0-pre (I think any node version)
- Platform: Ubuntu 15.10
- Subsystem: module
main.js
require('./b');
require('./a');
require('./c');
a.js
require('./b');
require('./c');
console.log(module.children);
b.js, c.js
//some code
If we run main.js
we have children array only with c.js
because b.js
was cached
[<Module c.js>]
Jokero
Metadata
Metadata
Assignees
Labels
moduleIssues and PRs related to the module subsystem.Issues and PRs related to the module subsystem.