Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

fix: recursive installation failure due to dep cycle #301

Merged
merged 1 commit into from Dec 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 6 additions & 3 deletions package.json
@@ -1,14 +1,14 @@
{
"name": "@oclif/command",
"description": "oclif base command",
"version": "1.8.12",
"version": "1.8.13",
"author": "Salesforce",
"bugs": "https://github.com/oclif/command/issues",
"dependencies": {
"@oclif/config": "^1.18.2",
"@oclif/errors": "^1.3.5",
"@oclif/parser": "^3.8.6",
"@oclif/plugin-help": "3.2.17",
"@oclif/plugin-help": "3.2.14",
"debug": "^4.1.1",
"semver": "^7.3.2"
},
Expand Down Expand Up @@ -64,5 +64,8 @@
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"pretest": "yarn build --noEmit && tsc -p test --noEmit"
},
"types": "lib/index.d.ts"
"types": "lib/index.d.ts",
"resolutions": {
"@oclif/plugin-help": "3.2.14"
}
}