Skip to content

Commit 3527dc0

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: nodejs#17535 PR-URL: nodejs#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 41bc096 commit 3527dc0

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)