-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: #41127 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
- Loading branch information
Showing
39 changed files
with
1,077 additions
and
109 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -871,6 +871,109 @@ if (foo) { | |
Entries in `optionalDependencies` will override entries of the same name in | ||
`dependencies`, so it's usually best to only put in one place. | ||
|
||
### overrides | ||
|
||
If you need to make specific changes to dependencies of your dependencies, for | ||
example replacing the version of a dependency with a known security issue, | ||
replacing an existing dependency with a fork, or making sure that the same | ||
version of a package is used everywhere, then you may add an override. | ||
|
||
Overrides provide a way to replace a package in your dependency tree with | ||
another version, or another package entirely. These changes can be scoped as | ||
specific or as vague as desired. | ||
|
||
To make sure the package `foo` is always installed as version `1.0.0` no matter | ||
what version your dependencies rely on: | ||
|
||
```json | ||
{ | ||
"overrides": { | ||
"foo": "1.0.0" | ||
} | ||
} | ||
``` | ||
|
||
The above is a short hand notation, the full object form can be used to allow | ||
overriding a package itself as well as a child of the package. This will cause | ||
`foo` to always be `1.0.0` while also making `bar` at any depth beyond `foo` | ||
also `1.0.0`: | ||
|
||
```json | ||
{ | ||
"overrides": { | ||
"foo": { | ||
".": "1.0.0", | ||
"bar": "1.0.0" | ||
} | ||
} | ||
} | ||
``` | ||
|
||
To only override `foo` to be `1.0.0` when it's a child (or grandchild, or great | ||
grandchild, etc) of the package `bar`: | ||
```json | ||
{ | ||
"overrides": { | ||
"bar": { | ||
"foo": "1.0.0" | ||
} | ||
} | ||
} | ||
``` | ||
Keys can be nested to any arbitrary length. To override `foo` only when it's a | ||
child of `bar` and only when `bar` is a child of `baz`: | ||
|
||
```json | ||
{ | ||
"overrides": { | ||
"baz": { | ||
"bar": { | ||
"foo": "1.0.0" | ||
} | ||
} | ||
} | ||
} | ||
``` | ||
|
||
The key of an override can also include a version, or range of versions. | ||
To override `foo` to `1.0.0`, but only when it's a child of `[email protected]`: | ||
```json | ||
{ | ||
"overrides": { | ||
"[email protected]": { | ||
"foo": "1.0.0" | ||
} | ||
} | ||
} | ||
``` | ||
You may not set an override for a package that you directly depend on unless | ||
both the dependency and the override itself share the exact same spec. To make | ||
this limitation easier to deal with, overrides may also be defined as a | ||
reference to a spec for a direct dependency by prefixing the name of the | ||
package you wish the version to match with a `$`. | ||
```json | ||
{ | ||
"dependencies": { | ||
"foo": "^1.0.0" | ||
}, | ||
"overrides": { | ||
// BAD, will throw an EOVERRIDE error | ||
// "foo": "^2.0.0" | ||
// GOOD, specs match so override is allowed | ||
// "foo": "^1.0.0" | ||
// BEST, the override is defined as a reference to the dependency | ||
"foo": "$foo", | ||
// the referenced package does not need to match the overridden one | ||
"bar": "$foo" | ||
} | ||
} | ||
``` | ||
### engines | ||
You can specify the version of node that your stuff works on: | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -160,7 +160,7 @@ <h3 id="description">Description</h3> | |
the results to only the paths to the packages named. Note that nested | ||
packages will <em>also</em> show the paths to the specified packages. For | ||
example, running <code>npm ls promzard</code> in npm's source tree will show:</p> | ||
<pre lang="bash"><code>npm@8.2.0 /path/to/npm | ||
<pre lang="bash"><code>npm@8.3.0 /path/to/npm | ||
└─┬ [email protected] | ||
└── [email protected] | ||
</code></pre> | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,7 +142,7 @@ <h1 id="packagejson">package.json</h1> | |
|
||
<section id="table_of_contents"> | ||
<h2 id="table-of-contents">Table of contents</h2> | ||
<div id="_table_of_contents"><ul><li><a href="#description">Description</a></li><li><a href="#name">name</a></li><li><a href="#version">version</a></li><li><a href="#description2">description</a></li><li><a href="#keywords">keywords</a></li><li><a href="#homepage">homepage</a></li><li><a href="#bugs">bugs</a></li><li><a href="#license">license</a></li><li><a href="#people-fields-author-contributors">people fields: author, contributors</a></li><li><a href="#funding">funding</a></li><li><a href="#files">files</a></li><li><a href="#main">main</a></li><li><a href="#browser">browser</a></li><li><a href="#bin">bin</a></li><li><a href="#man">man</a></li><li><a href="#directories">directories</a></li><ul><li><a href="#directoriesbin">directories.bin</a></li><li><a href="#directoriesman">directories.man</a></li></ul><li><a href="#repository">repository</a></li><li><a href="#scripts">scripts</a></li><li><a href="#config">config</a></li><li><a href="#dependencies">dependencies</a></li><ul><li><a href="#urls-as-dependencies">URLs as Dependencies</a></li><li><a href="#git-urls-as-dependencies">Git URLs as Dependencies</a></li><li><a href="#github-urls">GitHub URLs</a></li><li><a href="#local-paths">Local Paths</a></li></ul><li><a href="#devdependencies">devDependencies</a></li><li><a href="#peerdependencies">peerDependencies</a></li><li><a href="#peerdependenciesmeta">peerDependenciesMeta</a></li><li><a href="#bundleddependencies">bundledDependencies</a></li><li><a href="#optionaldependencies">optionalDependencies</a></li><li><a href="#engines">engines</a></li><li><a href="#os">os</a></li><li><a href="#cpu">cpu</a></li><li><a href="#private">private</a></li><li><a href="#publishconfig">publishConfig</a></li><li><a href="#workspaces">workspaces</a></li><li><a href="#default-values">DEFAULT VALUES</a></li><li><a href="#see-also">SEE ALSO</a></li></ul></div> | ||
<div id="_table_of_contents"><ul><li><a href="#description">Description</a></li><li><a href="#name">name</a></li><li><a href="#version">version</a></li><li><a href="#description2">description</a></li><li><a href="#keywords">keywords</a></li><li><a href="#homepage">homepage</a></li><li><a href="#bugs">bugs</a></li><li><a href="#license">license</a></li><li><a href="#people-fields-author-contributors">people fields: author, contributors</a></li><li><a href="#funding">funding</a></li><li><a href="#files">files</a></li><li><a href="#main">main</a></li><li><a href="#browser">browser</a></li><li><a href="#bin">bin</a></li><li><a href="#man">man</a></li><li><a href="#directories">directories</a></li><ul><li><a href="#directoriesbin">directories.bin</a></li><li><a href="#directoriesman">directories.man</a></li></ul><li><a href="#repository">repository</a></li><li><a href="#scripts">scripts</a></li><li><a href="#config">config</a></li><li><a href="#dependencies">dependencies</a></li><ul><li><a href="#urls-as-dependencies">URLs as Dependencies</a></li><li><a href="#git-urls-as-dependencies">Git URLs as Dependencies</a></li><li><a href="#github-urls">GitHub URLs</a></li><li><a href="#local-paths">Local Paths</a></li></ul><li><a href="#devdependencies">devDependencies</a></li><li><a href="#peerdependencies">peerDependencies</a></li><li><a href="#peerdependenciesmeta">peerDependenciesMeta</a></li><li><a href="#bundleddependencies">bundledDependencies</a></li><li><a href="#optionaldependencies">optionalDependencies</a></li><li><a href="#overrides">overrides</a></li><li><a href="#engines">engines</a></li><li><a href="#os">os</a></li><li><a href="#cpu">cpu</a></li><li><a href="#private">private</a></li><li><a href="#publishconfig">publishConfig</a></li><li><a href="#workspaces">workspaces</a></li><li><a href="#default-values">DEFAULT VALUES</a></li><li><a href="#see-also">SEE ALSO</a></li></ul></div> | ||
</section> | ||
|
||
<div id="_content"><h3 id="description">Description</h3> | ||
|
@@ -800,6 +800,88 @@ <h3 id="optionaldependencies">optionalDependencies</h3> | |
</code></pre> | ||
<p>Entries in <code>optionalDependencies</code> will override entries of the same name in | ||
<code>dependencies</code>, so it's usually best to only put in one place.</p> | ||
<h3 id="overrides">overrides</h3> | ||
<p>If you need to make specific changes to dependencies of your dependencies, for | ||
example replacing the version of a dependency with a known security issue, | ||
replacing an existing dependency with a fork, or making sure that the same | ||
version of a package is used everywhere, then you may add an override.</p> | ||
<p>Overrides provide a way to replace a package in your dependency tree with | ||
another version, or another package entirely. These changes can be scoped as | ||
specific or as vague as desired.</p> | ||
<p>To make sure the package <code>foo</code> is always installed as version <code>1.0.0</code> no matter | ||
what version your dependencies rely on:</p> | ||
<pre lang="json"><code>{ | ||
"overrides": { | ||
"foo": "1.0.0" | ||
} | ||
} | ||
</code></pre> | ||
<p>The above is a short hand notation, the full object form can be used to allow | ||
overriding a package itself as well as a child of the package. This will cause | ||
<code>foo</code> to always be <code>1.0.0</code> while also making <code>bar</code> at any depth beyond <code>foo</code> | ||
also <code>1.0.0</code>:</p> | ||
<pre lang="json"><code>{ | ||
"overrides": { | ||
"foo": { | ||
".": "1.0.0", | ||
"bar": "1.0.0" | ||
} | ||
} | ||
} | ||
</code></pre> | ||
<p>To only override <code>foo</code> to be <code>1.0.0</code> when it's a child (or grandchild, or great | ||
grandchild, etc) of the package <code>bar</code>:</p> | ||
<pre lang="json"><code>{ | ||
"overrides": { | ||
"bar": { | ||
"foo": "1.0.0" | ||
} | ||
} | ||
} | ||
</code></pre> | ||
<p>Keys can be nested to any arbitrary length. To override <code>foo</code> only when it's a | ||
child of <code>bar</code> and only when <code>bar</code> is a child of <code>baz</code>:</p> | ||
<pre lang="json"><code>{ | ||
"overrides": { | ||
"baz": { | ||
"bar": { | ||
"foo": "1.0.0" | ||
} | ||
} | ||
} | ||
} | ||
</code></pre> | ||
<p>The key of an override can also include a version, or range of versions. | ||
To override <code>foo</code> to <code>1.0.0</code>, but only when it's a child of <code>[email protected]</code>:</p> | ||
<pre lang="json"><code>{ | ||
"overrides": { | ||
"[email protected]": { | ||
"foo": "1.0.0" | ||
} | ||
} | ||
} | ||
</code></pre> | ||
<p>You may not set an override for a package that you directly depend on unless | ||
both the dependency and the override itself share the exact same spec. To make | ||
this limitation easier to deal with, overrides may also be defined as a | ||
reference to a spec for a direct dependency by prefixing the name of the | ||
package you wish the version to match with a <code>$</code>.</p> | ||
<pre lang="json"><code>{ | ||
"dependencies": { | ||
"foo": "^1.0.0" | ||
}, | ||
"overrides": { | ||
// BAD, will throw an EOVERRIDE error | ||
// "foo": "^2.0.0" | ||
// GOOD, specs match so override is allowed | ||
// "foo": "^1.0.0" | ||
// BEST, the override is defined as a reference to the dependency | ||
"foo": "$foo", | ||
// the referenced package does not need to match the overridden one | ||
"bar": "$foo" | ||
} | ||
} | ||
</code></pre> | ||
<h3 id="engines">engines</h3> | ||
<p>You can specify the version of node that your stuff works on:</p> | ||
<pre lang="json"><code>{ | ||
|
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.