Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
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
  • Loading branch information
MylesBorins committed Dec 20, 2017
commit 48ab33b20d5bf36586769493e3bbcea90bbf34a4
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