()
| 837 | } |
| 838 | |
| 839 | _nodeModuleTrees() { |
| 840 | if (!this._cachedNodeModuleTrees) { |
| 841 | this._cachedNodeModuleTrees = Array.from( |
| 842 | this._nodeModules.values(), |
| 843 | (module) => |
| 844 | new Funnel(module.path, { |
| 845 | srcDir: '/', |
| 846 | destDir: `node_modules/${module.name}/`, |
| 847 | annotation: `Funnel (node_modules/${module.name})`, |
| 848 | }) |
| 849 | ); |
| 850 | } |
| 851 | |
| 852 | return this._cachedNodeModuleTrees; |
| 853 | } |
| 854 | |
| 855 | _addonBundles(type) { |
| 856 | if (!this._cachedAddonBundles[type]) { |