How to find the old version numbers for an Atmosphere (meteor) package?

The latest version of an Atmosphere (meteor) package has a serious bug, so I want to indicate an old version number for it. But I can't find a version list of it on its Github page nor on the Atmosphere page.

Is there a way to list up all version numbers of an Atmosphere (meteor) package?

Upvotes: 1

Views: 40

Answers (1)

Kelly Copley
Kelly Copley

Reputation: 3158

You can use the meteor show command, spcifically with the --show-all flag like this:

meteor show --show-all package:name

Upvotes: 2

Related Questions