-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simplify usage and docs #175
Conversation
1. version requirements are what you set 2. versions are what you install
> nodist npm 3.x | ||
# Globally activate npm 3 | ||
> nodist global npm 3.x | ||
# Set global node version requirement. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be
"Sets the global npm version requirement."
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah, yes.
nodist run <version> -- <args..> Run <args> with the specified node version | ||
nodist r <version> -- <args..> (downloads the executable, if necessary). | ||
nodist run <ver-req> -- <args> Run <args> with a version matching the provided requirement. | ||
nodist r <ver-req> -- <args> (Will abort if no matching version is installed) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would either lowercase "Will" or capitalize the first word in the subsequent parentheticals. Also missing period here and on line 40.
Some minor details in the usage.txt but overall I think these are good updates to the docs. |
👍 |
Thanks! :) |
Fixes #172
please provide feedback! :)