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: #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>
  • Loading branch information
MylesBorins committed Apr 5, 2018
1 parent 25a816d commit 55557ba
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 55557ba

Please sign in to comment.