36 lines
873 B
JavaScript
36 lines
873 B
JavaScript
|
|
import process from 'node:process';
|
||
|
|
|
||
|
|
import globalModules from 'global-modules';
|
||
|
|
|
||
|
|
import configurationError from './configurationError.mjs';
|
||
|
|
import resolveSilent from './resolveSilent.mjs';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @param {string} basedir
|
||
|
|
* @param {string} lookup
|
||
|
|
* @param {string} [cwd]
|
||
|
|
* @returns {string}
|
||
|
|
*/
|
||
|
|
export default function getModulePath(basedir, lookup, cwd = process.cwd()) {
|
||
|
|
// 1. Try to resolve from the provided directory
|
||
|
|
// 2. Try to resolve from `cwd` or `process.cwd()`
|
||
|
|
// 3. Try to resolve from global `node_modules` directory
|
||
|
|
let path = resolveSilent(basedir, lookup);
|
||
|
|
|
||
|
|
if (!path) {
|
||
|
|
path = resolveSilent(cwd, lookup);
|
||
|
|
}
|
||
|
|
|
||
|
|
if (!path) {
|
||
|
|
path = resolveSilent(globalModules, lookup);
|
||
|
|
}
|
||
|
|
|
||
|
|
if (!path) {
|
||
|
|
throw configurationError(
|
||
|
|
`Could not find "${lookup}". Do you need to install the package or use the "configBasedir" option?`,
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
return path;
|
||
|
|
}
|