Skip to content

Commit

Permalink
fix: cannot find optional commands if cli inside a monorepo package (
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding authored Apr 19, 2023
1 parent 6cb85d8 commit c1979dd
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 5 deletions.
28 changes: 24 additions & 4 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,35 @@
"npmlog": "^7.0.1",
"yargs": "^17.7.1"
},
"devDependencies": {
"yargs-parser": "^21.1.1"
},
"peerDependencies": {
"@lerna-lite/publish": "2.0.0"
"@lerna-lite/exec": "2.x",
"@lerna-lite/list": "2.x",
"@lerna-lite/publish": "2.x",
"@lerna-lite/run": "2.x",
"@lerna-lite/version": "2.x",
"@lerna-lite/watch": "2.x"
},
"peerDependenciesMeta": {
"@lerna-lite/exec": {
"optional": true
},
"@lerna-lite/list": {
"optional": true
},
"@lerna-lite/publish": {
"optional": true
},
"@lerna-lite/run": {
"optional": true
},
"@lerna-lite/version": {
"optional": true
},
"@lerna-lite/watch": {
"optional": true
}
},
"devDependencies": {
"yargs-parser": "^21.1.1"
}
}
17 changes: 16 additions & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c1979dd

Please sign in to comment.