Skip to content

Commit

Permalink
fix: tweak imports to break cycle (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
peternhale committed Dec 9, 2021
1 parent e9b8ba8 commit d2c24ad
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -5,7 +5,7 @@
"author": "Jeff Dickey @jdxcode",
"bugs": "https://github.com/oclif/plugin-help/issues",
"dependencies": {
"@oclif/command": "1.8.11",
"@oclif/cmd": "npm:@oclif/command@1.8.12",
"@oclif/config": "1.18.2",
"@oclif/errors": "1.3.5",
"chalk": "^4.1.2",
Expand Down
4 changes: 2 additions & 2 deletions src/commands/help.ts
@@ -1,5 +1,5 @@
import Command from '@oclif/command/lib/command'
import * as flags from '@oclif/command/lib/flags'
import Command from '@oclif/cmd/lib/command'
import * as flags from '@oclif/cmd/lib/flags'

import {getHelpClass} from '..'

Expand Down
28 changes: 28 additions & 0 deletions yarn.lock
Expand Up @@ -86,6 +86,18 @@
"@nodelib/fs.scandir" "2.1.3"
fastq "^1.6.0"

"@oclif/cmd@npm:@oclif/command@1.8.12":
version "1.8.12"
resolved "https://registry.yarnpkg.com/@oclif/command/-/command-1.8.12.tgz#1f3bbef4bb7e32b0ea45016ecf4a175ac6780803"
integrity sha512-Qv+5kUdydIUM00HN0m/xuEB+SxI+5lI4bap1P5I4d8ZLqtwVi7Q6wUZpDM5QqVvRkay7p4TiYXRXw1rfXYwEjw==
dependencies:
"@oclif/config" "^1.18.2"
"@oclif/errors" "^1.3.5"
"@oclif/parser" "^3.8.6"
"@oclif/plugin-help" "3.2.16"
debug "^4.1.1"
semver "^7.3.2"

"@oclif/color@^0.1.2":
version "0.1.2"
resolved "https://registry.yarnpkg.com/@oclif/color/-/color-0.1.2.tgz#28b07e2850d9ce814d0b587ce3403b7ad8f7d987"
Expand Down Expand Up @@ -347,6 +359,22 @@
widest-line "^3.1.0"
wrap-ansi "^6.2.0"

"@oclif/plugin-help@3.2.16":
version "3.2.16"
resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-3.2.16.tgz#5690afde9c3641b8acc567ee5bacf54df5fef505"
integrity sha512-O78iV+NhBQtviIhVEVuI21vZ9nRr9B5pR+P60oB5XFvvPKkSkV5Culih42mYU30VuWiaiWlg7+OdA4pmSPEpwg==
dependencies:
"@oclif/command" "1.8.11"
"@oclif/config" "1.18.2"
"@oclif/errors" "1.3.5"
chalk "^4.1.2"
indent-string "^4.0.0"
lodash "^4.17.21"
string-width "^4.2.0"
strip-ansi "^6.0.0"
widest-line "^3.1.0"
wrap-ansi "^6.2.0"

"@oclif/plugin-help@^3":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-3.0.0.tgz#7d6433d74b0473a43797c6e0468b503470f23b50"
Expand Down

0 comments on commit d2c24ad

Please sign in to comment.