fix: correct nodejs version format in .tool-versions file #2307
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Context
This change corrects the format of the Node.js version in the
.tool-versionsfile by removing the 'v' prefix. This ensures compatibility with the asdf version manager, which requires version numbers without the 'v' prefix.ref: https://asdf-vm.com/manage/configuration.html
When using mise, Node.js installation failed, with v being duplicated, resulting in
node-vv20.18.1.tar.gz.Implementation
The implementation involves a simple modification in the
.tool-versionsfile, changing the Node.js version fromv20.18.1to20.18.1. This change aligns with the standard format expected by the asdf version manager. No refactoring or additional changes were necessary.Screenshots
N/A
How to Test
asdf installto verify that the Node.js version specified in.tool-versionsis correctly recognized and installed without errors.Get in Touch
If you have any questions or need further clarification, feel free to reach out on the Roo Code Discord. My handle is
serizawa_.Important
Corrects Node.js version format in
.tool-versionsfor asdf compatibility, fixing installation errors..tool-versionsfromv20.18.1to20.18.1for asdf compatibility.asdf installin project directory.This description was created by
for 9fa0050. It will automatically update as commits are pushed.