diff --git a/src/generator.ts b/src/generator.ts index 9b83e45..1c77af9 100644 --- a/src/generator.ts +++ b/src/generator.ts @@ -1130,8 +1130,9 @@ export class Generator { } this.traceMap.pins = pins; if (--this.installCnt === 0) { - const { map } = await this.traceMap.finishInstall(); + const { staticDeps, dynamicDeps, map } = await this.traceMap.finishInstall(); this.map = map; + return { staticDeps, dynamicDeps }; } }