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 <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]>
1 parent 25a816d commit 55557ba

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

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)