Update runtime versions on package.json - #326
Open
risantos wants to merge 1 commit into
Open
Conversation
- Set `engines.node` to `>=20` to match the change on PR mthadley#324. It was left as `>=18` while its commit mthadley@3759058 raised the minimum version to 20. - Add missing change on `package-lock.json`. - Add `devEngines` specifying `runtime` and `packageManager`. > Specifies requirements for development environment components such as operating systems, runtimes, or package managers. Used to ensure consistent development environments across the team. `onFail` was set to `ignore` to avoid breaking development environments that may not meet the specified versions. This allows for flexibility while still providing guidance on the recommended versions for development. See https://docs.npmjs.com/cli/v11/configuring-npm/package-json#devengines Signed-off-by: Rafael Santos <rafael@risantos.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Set
engines.nodeto>=20to match the change on PR Raise minimum node to 18 #324. It was left as>=18while its commit 3759058 raised the minimum version to 20.Add missing change on
package-lock.json.Add
devEnginesspecifyingruntimeandpackageManager.onFailwas set toignoreto avoid breaking development environments that may not meet the specified versions. This allows for flexibility while still providing guidance on the recommended versions for development.See https://docs.npmjs.com/cli/v11/configuring-npm/package-json#devengines