Skip to content

Commit ef2f039

Browse files
committed
Warn once through util.deprecate, refactor
1 parent 712e75c commit ef2f039

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

lib/module.js

+14-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const assert = require('assert').ok;
77
const fs = require('fs');
88
const path = require('path');
99

10-
1110
// If obj.hasOwnProperty has been overridden, then calling
1211
// obj.hasOwnProperty(prop) will break.
1312
// See: https://github.com/joyent/node/issues/1707
@@ -125,6 +124,11 @@ function tryExtensions(p, exts) {
125124
}
126125

127126

127+
const noopDeprecateRequireDot = util.deprecate(function() {},
128+
`warning: require('.') did resolve outside the package directory. ` +
129+
`This functionality will be deprecated soon.`);
130+
131+
128132
Module._findPath = function(request, paths) {
129133
var exts = Object.keys(Module._extensions);
130134

@@ -169,9 +173,8 @@ Module._findPath = function(request, paths) {
169173
}
170174

171175
if (filename) {
172-
if (request === '.' && i > 0) {
173-
console.error(`(node) warning: require('.') resolved to ${filename}`);
174-
}
176+
// Warn once if '.' resolved outside the module dir
177+
if (request === '.' && i > 0) noopDeprecateRequireDot();
175178
Module._pathCache[cacheKey] = filename;
176179
return filename;
177180
}
@@ -215,11 +218,14 @@ Module._resolveLookupPaths = function(request, parent) {
215218
paths = parent.paths.concat(paths);
216219
}
217220

218-
// For '.', put the module's dir at the front of the resolve paths
219-
// TODO(silverwind): Treat '.' exactly the same as './'
221+
// Maintain backwards compat with certain broken uses of require('.')
222+
// by putting the module's directory in front of the lookup paths.
220223
if (request === '.') {
221-
paths.splice(0, 0, parent && parent.filename ?
222-
path.dirname(parent.filename) : path.resolve(request));
224+
if (parent && parent.filename) {
225+
paths.splice(0, 0, path.dirname(parent.filename));
226+
} else {
227+
paths.splice(0, 0, path.resolve(request));
228+
}
223229
}
224230

225231
return [request, paths];

0 commit comments

Comments
 (0)