Skip to content

Commit

Permalink
deps: manually add 10.x support to npm
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
MylesBorins authored and MayaLekova committed May 8, 2018
1 parent f2fac54 commit b2f8a91
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deps/npm/lib/utils/unsupported.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ var supportedNode = [
{ver: '6', min: '6.0.0'},
{ver: '7', min: '7.0.0'},
{ver: '8', min: '8.0.0'},
{ver: '9', min: '9.0.0'}
{ver: '9', min: '9.0.0'},
{ver: '10', min: '10.0.0'}
]
var knownBroken = '<4.7.0'

Expand Down

0 comments on commit b2f8a91

Please sign in to comment.