-
Notifications
You must be signed in to change notification settings - Fork 197
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
feat: add limited support for devEngines
#643
Conversation
Co-authored-by: Geoffrey Booth <[email protected]>
What value of onFail is used by default if its not accepting user input? download? |
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.
How about updating the readme?
In particular, mentioning the onFail behavior and also which takes precedence when both packageManager and devEngines is defined?
- if set to `warn` or some other value, Corepack will print a warning in case | ||
of mismatch. | ||
|
||
If the top-level `packageManager` field is missing, Corepack will use the |
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.
This should be the first sentence of this section.
Because it sounds like this devEngines.packageManager
is ignored when there is a top level packageManager
, right?
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.
No it's never ignored. As said in the first paragraph of this section, if it is defined to something Corepack recognises, it will throw/warn/do nothing (depending of the value of onFail
) if the user is trying to use an incompatible package manager (i.e. if the one defined in package.json#packageManager
does not match the one defined in package.json#devEngines.packageManager
for when the user is using a Corepack shim)
@@ -246,6 +275,7 @@ it. | |||
|
|||
Unlike `corepack use` this command doesn't take a package manager name nor a | |||
version range, as it will always select the latest available version from the | |||
range specified in `devEngines.packageManager.version`, or fallback to the |
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.
What about top-level packageManager
?
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.
That's what or fallback to the same major line
is for
This comment was marked as resolved.
This comment was marked as resolved.
It's a [standardization effort by the OpenJS Foundation](https://github.com/openjs-foundation/package-metadata-interoperability-collab-space/blob/43e31689ae1fff8c46b617548655a3f60e0c9387/devengines-field-proposal.md) and has been implemented in [NPM 10.9.0](npm/cli#7766) and [Corepack 0.32.0](nodejs/corepack#643).
* Support `devEngines` field in `package.json` It's a [standardization effort by the OpenJS Foundation](https://github.com/openjs-foundation/package-metadata-interoperability-collab-space/blob/43e31689ae1fff8c46b617548655a3f60e0c9387/devengines-field-proposal.md) and has been implemented in [NPM 10.9.0](npm/cli#7766) and [Corepack 0.32.0](nodejs/corepack#643). * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This implementation of
devEngines
support in this PR is limited topackageManager
only, only onepackageManager
can be specified,theEDIT: I've added support for theonFail
field is ignoredonFail
field, supporting the same values as npm.Fixes: #567