Skip to content

Commit

Permalink
fix: incorrect semver version for @oclif/color (#92)
Browse files Browse the repository at this point in the history
see #86 
`^0.0.0` will only match `0.0.0`, and will not pick up the latest @oclif/color which is at `0.1.0`, that fixes an exception.
`0.x` will properly match all pre-release versions.
  • Loading branch information
shazron authored Apr 15, 2020
1 parent 29376a1 commit a55a138
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "Jeff Dickey @jdxcode",
"bugs": "https://github.com/oclif/plugin-plugins/issues",
"dependencies": {
"@oclif/color": "^0.0.0",
"@oclif/color": "^0.x",
"@oclif/command": "^1.5.12",
"chalk": "^2.4.2",
"cli-ux": "^5.2.1",
Expand Down

0 comments on commit a55a138

Please sign in to comment.