Reputation: 1518
Does yarn have something that does the same as below?
λ npm show @types/react@* version
@types/[email protected] '0.14.27'
@types/[email protected] '0.14.28'
@types/[email protected] '0.14.29'
@types/[email protected] '0.14.30'
@types/[email protected] '0.14.31'
@types/[email protected] '0.14.32'
...
Upvotes: 2
Views: 930
Reputation: 40084
For Yarn 2 you can do:
yarn npm info @types/react
Which shows all versions and a bunch of other stuff.
Upvotes: 0