(file, projectDir, fallbackDir, options)
| 53 | } |
| 54 | |
| 55 | function findFile(file, projectDir, fallbackDir, options) { |
| 56 | var local = path.resolve(projectDir, file); |
| 57 | if (!options.disableLoadingLocal && fs.existsSync(local)) return local; |
| 58 | var shared = path.resolve(fallbackDir, file); |
| 59 | if (fs.existsSync(shared)) return shared; |
| 60 | } |
| 61 | |
| 62 | var distDir = path.resolve(__dirname, ".."); |
| 63 |
no outgoing calls
no test coverage detected
searching dependent graphs…