Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
unsupported: Allow node@11, when it comes
Browse files Browse the repository at this point in the history
  • Loading branch information
iarna committed May 9, 2018
1 parent 3dcc240 commit ed1aebf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/utils/unsupported.js
Expand Up @@ -4,7 +4,8 @@ var supportedNode = [
{ver: '6', min: '6.0.0'},
{ver: '8', min: '8.0.0'},
{ver: '9', min: '9.0.0'},
{ver: '10', min: '10.0.0'}
{ver: '10', min: '10.0.0'},
{ver: '11', min: '11.0.0'}
]
var knownBroken = '<4.7.0'

Expand Down
3 changes: 2 additions & 1 deletion test/tap/unsupported.js
Expand Up @@ -28,7 +28,8 @@ var versions = [
['v7.2.3', false, true],
['v8.4.0', false, false],
['v9.3.0', false, false],
['v10.0.0-0', false, false]
['v10.0.0-0', false, false],
['v11.0.0-0', false, false]
]

test('versions', function (t) {
Expand Down

0 comments on commit ed1aebf

Please sign in to comment.