@@ -7,7 +7,6 @@ const assert = require('assert').ok;
7
7
const fs = require ( 'fs' ) ;
8
8
const path = require ( 'path' ) ;
9
9
10
-
11
10
// If obj.hasOwnProperty has been overridden, then calling
12
11
// obj.hasOwnProperty(prop) will break.
13
12
// See: https://github.com/joyent/node/issues/1707
@@ -125,6 +124,11 @@ function tryExtensions(p, exts) {
125
124
}
126
125
127
126
127
+ const noopDeprecateRequireDot = util . deprecate ( function ( ) { } ,
128
+ `warning: require('.') did resolve outside the package directory. ` +
129
+ `This functionality will be deprecated soon.` ) ;
130
+
131
+
128
132
Module . _findPath = function ( request , paths ) {
129
133
var exts = Object . keys ( Module . _extensions ) ;
130
134
@@ -169,9 +173,8 @@ Module._findPath = function(request, paths) {
169
173
}
170
174
171
175
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 ( ) ;
175
178
Module . _pathCache [ cacheKey ] = filename ;
176
179
return filename ;
177
180
}
@@ -215,11 +218,14 @@ Module._resolveLookupPaths = function(request, parent) {
215
218
paths = parent . paths . concat ( paths ) ;
216
219
}
217
220
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.
220
223
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
+ }
223
229
}
224
230
225
231
return [ request , paths ] ;
0 commit comments