This repository has been archived by the owner on Jul 6, 2019. It is now read-only.
This repository has been archived by the owner on Jul 6, 2019. It is now read-only.
Feature Request: support version specifiers #9
Closed
Description
I want to be able to add a version specifier to request a particular version of a command. This could be useful either for checking out beta tagged versions that aren't yet "latest", or for going back in time and checking that something works with a specific prior version. It also makes it feel more npm-like.
right now, I get:
> npx standard@5 --version
6.0.4
and instead it would be awesome to get:
> npx standard@5 --version
5.4.1
(also, since npm info standard --json | js .version
is 10.0.2, I'm not sure why I'm getting 6.0.4 other than assuming I've got it cached somewhere on my machine - but that's a different issue)