Skip to content

Commit 685d6e5

Browse files
committed
module: search NODE_PATH in require('.')
1 parent d726a17 commit 685d6e5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lib/module.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -205,11 +205,16 @@ Module._resolveLookupPaths = function(request, parent) {
205205
}
206206

207207
var start = request.substring(0, 2);
208-
if (start !== '.' && start !== './' && start !== '..') {
208+
if (start !== './' && start !== '..') {
209209
var paths = modulePaths;
210210
if (parent) {
211211
if (!parent.paths) parent.paths = [];
212212
paths = parent.paths.concat(paths);
213+
// For '.', put PWD at the front of the resolve paths
214+
// TODO(silverwind): Treat '.' exactly the same as './'
215+
if (request === '.') {
216+
paths.splice(0, 0, path.resolve(request));
217+
}
213218
}
214219
return [request, paths];
215220
}

0 commit comments

Comments
 (0)