We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64f2bdb commit 0010974Copy full SHA for 0010974
1 file changed
lib/FileSystemInfo.js
@@ -2256,7 +2256,9 @@ class FileSystemInfo {
2256
for (const path of managedItems) {
2257
const cache = this._managedItems.get(path);
2258
if (cache !== undefined) {
2259
- managedFiles.add(join(this.fs, path, "package.json"));
+ if (cache !== "missing") {
2260
+ managedFiles.add(join(this.fs, path, "package.json"));
2261
+ }
2262
managedItemInfo.set(path, cache);
2263
} else {
2264
jobs++;
@@ -2269,7 +2271,9 @@ class FileSystemInfo {
2269
2271
}
2270
2272
jobError();
2273
} else if (entry) {
2274
+ if (entry !== "missing") {
2275
2276
2277
managedItemInfo.set(path, entry);
2278
jobDone();
2279
0 commit comments