We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01abf2c commit ebeffd6Copy full SHA for ebeffd6
1 file changed
src/local-mods.ts
@@ -259,9 +259,11 @@ export class LocalMods {
259
const depMod = this.cacheRecord[depModName] ?? this.cacheRecordByName[depModName]
260
261
if (depMod) {
262
- deps.add(depMod)
+ if (!deps.has(depMod)) {
263
+ deps.add(depMod)
264
- this.findDeps(depMod, deps, missing)
265
+ this.findDeps(depMod, deps, missing)
266
+ }
267
} else {
268
missing.add(depModName)
269
}
0 commit comments