feat: add nvmrc with node engine for nvm users#5770
Conversation
Summary of ChangesHello @ginna-baker, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request introduces a Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request introduces a .nvmrc file to help developers manage their Node.js version using nvm. While the specified version v18.15.0 is valid according to package.json, it creates a discrepancy with the Node.js version used in the project's Docker environments. My feedback suggests aligning the version in .nvmrc with the Docker setup to ensure consistency and prevent potential environment-specific issues.
.nvmrc
Outdated
| @@ -0,0 +1 @@ | |||
| v18.15.0 | |||
There was a problem hiding this comment.
To ensure consistency between local development and production-like environments, it's advisable to use a Node.js version that matches what's defined in the Docker configurations. Both Dockerfile and docker/Dockerfile use node:20-alpine. Using Node 18 locally while containers use Node 20 could lead to environment-specific bugs. Aligning the .nvmrc with the container environment by using Node 20 will help prevent such issues.
20
There was a problem hiding this comment.
@ginna-baker are you able to take a look at this?
There was a problem hiding this comment.
Got it -- pushed up node 20.19.2 as our docker images use node 20.19
Add an nvmrc so devs can easily switch versions of nodeJS