-
Notifications
You must be signed in to change notification settings - Fork 80
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
Feature Request: Allow only specifying a major version #684
Comments
Most likely agreed. The work necessary here is identified by #145 and #237 node-build inherits the opinions and implementation of its progenitor, ruby-build; wherein a given runtime version gets its name from the build definition file that describes its installation. In order to support these "aliases" of a sort, we would need to make node-build capable of moving/renaming an installed runtime after installation (thereby allowing a definition file to install a runtime that does not match its own name). I'm making an assumption here that you expect But I do agree it's worthwhile. The underlying capability for prefix moving needs to be built, and then we can begin to layer in the capability in the CLI and account for the desired ergonomics. |
Awesome! I don't know much about the structure of this code, but would be happy to tackle some smaller issues if you could point me in the right direction(s).
That was the intention, yes. Basically mirroring the Re: confusion, I think it's ok in this case. Someone doing Similarly, if there's just the string |
One feature I'm really missing from
nvm
is the ability to specify only part of a semver version.nvm install 14
downloads the latest14.x.y
availablenvm install 14.16
downloads the latest14.16.x
availablenvm install 14.16.1
installs that exact version as expectedIt's super convenient for installing the latest version of a major version if you don't care about specifics.
The text was updated successfully, but these errors were encountered: