mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 12:05:32 +00:00
36 lines
869 B
JavaScript
36 lines
869 B
JavaScript
import process from 'node:process';
|
|
|
|
import globalModules from 'global-modules';
|
|
|
|
import { ConfigurationError } from './errors.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 new ConfigurationError(
|
|
`Could not find "${lookup}". Do you need to install the package or use the "configBasedir" option?`,
|
|
);
|
|
}
|
|
|
|
return path;
|
|
}
|