We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d726a17 commit 685d6e5Copy full SHA for 685d6e5
lib/module.js
@@ -205,11 +205,16 @@ Module._resolveLookupPaths = function(request, parent) {
205
}
206
207
var start = request.substring(0, 2);
208
- if (start !== '.' && start !== './' && start !== '..') {
+ if (start !== './' && start !== '..') {
209
var paths = modulePaths;
210
if (parent) {
211
if (!parent.paths) parent.paths = [];
212
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
+ }
218
219
return [request, paths];
220
0 commit comments