Skip to content

Commit

Permalink
feat(cli): allowing for composite cli packages
Browse files Browse the repository at this point in the history
  • Loading branch information
kedrzu committed Aug 7, 2023
1 parent bce78c5 commit a5d1a99
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/monorepo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ async function getTsReferences(params: {
!depTsConfig ||
!depTsConfig.resolved.compilerOptions ||
!depTsConfig.resolved.compilerOptions.composite ||
!(dep.get('main') || dep.get('exports'));
!(dep.get('main') || dep.get('exports') || dep.get('bin'));

if (disable) {
continue;
Expand Down
3 changes: 3 additions & 0 deletions packages/ioc/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
"references": [
{
"path": "../types/tsconfig.json"
},
{
"path": "../jest/tsconfig.json"
}
]
}

0 comments on commit a5d1a99

Please sign in to comment.