(result, execPath, cwdPath)
| 65948 | var applyPreferLocal = (result, cwdPath) => { |
| 65949 | let previous; |
| 65950 | while (previous !== cwdPath) { |
| 65951 | result.push(import_node_path.default.join(cwdPath, "node_modules/.bin")); |
| 65952 | previous = cwdPath; |
| 65953 | cwdPath = import_node_path.default.resolve(cwdPath, ".."); |
| 65954 | } |
| 65955 | }; |
| 65956 | var applyExecPath = (result, execPath, cwdPath) => { |
no test coverage detected
searching dependent graphs…