This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * fsevents-exhaust — macOS FSEventStream limit tester | |
| * | |
| * Measures the maximum number of FSEventStream instances that macOS allows, | |
| * both per-process and system-wide. This is useful for diagnosing | |
| * FSEventStreamStart failures in tools like Watchman, VS Code, Webpack, etc. | |
| * | |
| * Background: | |
| * macOS's fseventsd daemon enforces a hard limit on FSEventStream clients. | |
| * This limit is NOT documented by Apple. The per-process limit is 512 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/links/link-generator.js b/src/links/link-generator.js | |
| index 62123823..3eaa3019 100644 | |
| --- a/src/links/link-generator.js | |
| +++ b/src/links/link-generator.js | |
| @@ -348,7 +348,7 @@ The dependencies array has the following ids: ${dependencies.map(d => d.id).join | |
| return R.flatten(currLinks); | |
| }); | |
| const internalCustomResolvedLinks = parentComponent.customResolvedPaths.length | |
| - ? getInternalCustomResolvedLinks(parentComponent, createNpmLinkFiles) | |
| + ? getInternalCustomResolvedLinks(parentComponent, parentComponentMap, createNpmLinkFiles) |