-
-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
uvu -r
with relative path fails to find module
#216
Comments
I have the same problem here with 0.5.6. Running |
Same problem... I cannot update from 0.5.4 because of this. |
Applying this patch (via diff --git a/parse/index.js b/parse/index.js
index a02f1118c49d6a24186fb5ef1dfbdf52d7443c10..0cdb8d5d1cfb15fc0a0a3755554c57d6d24b3714 100644
--- a/parse/index.js
+++ b/parse/index.js
@@ -7,6 +7,11 @@ const ls = promisify(readdir);
const toStat = promisify(stat);
const toRegex = x => new RegExp(x, 'i');
+function exists(dep) {
+ try { return require.resolve(dep) }
+ catch (err) { return false }
+}
+
async function parse(dir, pattern, opts = {}) {
if (pattern) pattern = toRegex(pattern);
else if (dir) pattern = /(((?:[^\/]*(?:\/|$))*)[\\\/])?\w+\.([mc]js|[jt]sx?)$/;
@@ -18,8 +23,10 @@ async function parse(dir, pattern, opts = {}) {
let ignores = ['^.git', 'node_modules'].concat(opts.ignore || []).map(toRegex);
requires.forEach(name => {
- try { return require(name) }
- catch (e) { throw new Error(`Cannot find module "${name}"`) }
+ let tmp = exists(name);
+ if (tmp) return require(tmp);
+ if (tmp = exists(resolve(name))) return require(tmp);
+ throw new Error(`Cannot find module '${name}'`);
});
// NOTE: Node 8.x support |
Yeah same, we downgraded |
To reproduce,
Then run
uvu -r ./setup.js
.uvu -r ../../../setup.js
or use absolute path works fine. Andnode -r ./setup.js test.js
also works.It seems regression happened at
0.5.4
>0.5.5
.uvu@next
: NG[email protected]
: NG[email protected]
: NG[email protected]
: OKThe text was updated successfully, but these errors were encountered: