Skip to content

Commit

Permalink
feat: add static deps and dynamic deps to uninstall (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford authored Feb 20, 2024
1 parent eb034be commit dbb24f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 };
}
}

Expand Down

0 comments on commit dbb24f2

Please sign in to comment.