Skip to content
This repository was archived by the owner on May 17, 2025. It is now read-only.

Commit dbb24f2

Browse files
authored
feat: add static deps and dynamic deps to uninstall (#341)
1 parent eb034be commit dbb24f2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/generator.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1130,8 +1130,9 @@ export class Generator {
11301130
}
11311131
this.traceMap.pins = pins;
11321132
if (--this.installCnt === 0) {
1133-
const { map } = await this.traceMap.finishInstall();
1133+
const { staticDeps, dynamicDeps, map } = await this.traceMap.finishInstall();
11341134
this.map = map;
1135+
return { staticDeps, dynamicDeps };
11351136
}
11361137
}
11371138

0 commit comments

Comments
 (0)