Skip to content

Commit 4d13ad6

Browse files
author
Baitu Huang
committed
fix bug in getDependencies
1 parent 7544363 commit 4d13ad6

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

lib/resolve-options.js

-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,6 @@ function updateGetFlags (flagsPaths, errors = 0) {
8585
if (Array.isArray(flagsPaths)) {
8686
flagsPaths.forEach(fp => clearModule(fp))
8787
flagPath = flagsPaths[0]
88-
} else {
89-
clearModule(flagPath)
9088
}
9189
let newFlags
9290
try {

lib/utils.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,16 @@ exports.toFunc = function toFunc (exp, useWith = true) {
3636
}
3737

3838
const Module = require('module')
39+
const path = require('path')
3940
exports.getDependencies = function getDependencies (callback, init) {
4041
const deps = new Set(init)
4142
const resolveFilename = Module._resolveFilename
4243
Module._resolveFilename = function _resolveFilename (req, ...args) {
4344
const filename = resolveFilename.call(this, req, ...args)
44-
if (/^\.?\//.test(filename)) {
45+
if (path.isAbsolute(req) && !/node_modules/.test(req)) {
46+
deps.add(filename)
47+
}
48+
if (/^\.{1,2}\//.test(req)) {
4549
deps.add(filename)
4650
}
4751
return filename

0 commit comments

Comments
 (0)