Skip to content

Commit 514fcee

Browse files
committed
feat: support three level packages
1 parent 973588e commit 514fcee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/utils/global-state.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ function getPriConfig(rootPath: string) {
7373
}
7474

7575
function collectPackages(packageRootPath: string, packageDir = PACKAGES_NAME, deep = 0) {
76-
// Only support two level packages
77-
if (deep >= 2) {
76+
// Only support three level packages
77+
if (deep >= 3) {
7878
return;
7979
}
8080

0 commit comments

Comments
 (0)