Skip to content

Commit 55557ba

Browse files
committed
deps: manually add 10.x support to npm
Currently npm explicitly doesn't support 10.x and will fail on master. This patch manually adds support for 10.x so that we can keep an up to date version of npm on master. refs: #17535 Backport-PR-URL: #19560 PR-URL: #17777 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
1 parent 25a816d commit 55557ba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

deps/npm/lib/utils/unsupported.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ var supportedNode = [
55
{ver: '6', min: '6.0.0'},
66
{ver: '7', min: '7.0.0'},
77
{ver: '8', min: '8.0.0'},
8-
{ver: '9', min: '9.0.0'}
8+
{ver: '9', min: '9.0.0'},
9+
{ver: '10', min: '10.0.0'}
910
]
1011
var knownBroken = '<4.7.0'
1112

0 commit comments

Comments
 (0)