Skip to content

Commit

Permalink
Update knownBroken version (#165)
Browse files Browse the repository at this point in the history
PR-URL: #165
Credit: @ljharb
Reviewed-By: @zkat
Reviewed-By: @aeschright
  • Loading branch information
ljharb authored and aeschright committed Mar 19, 2019
1 parent 656bce7 commit 6b1a9da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/utils/unsupported.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var supportedNode = [
{ver: '11', min: '11.0.0'},
{ver: '12', min: '12.0.0'}
]
var knownBroken = '<4.7.0'
var knownBroken = '<6.0.0'

var checkVersion = exports.checkVersion = function (version) {
var versionNoPrerelease = version.replace(/-.*$/, '')
Expand Down
4 changes: 2 additions & 2 deletions test/tap/unsupported.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ var versions = [
['v2.3.1', true, true],
['v3.0.0', true, true],
['v4.5.0', true, true],
['v4.8.4', false, true],
['v5.7.1', false, true],
['v4.8.4', true, true],
['v5.7.1', true, true],
['v6.8.1', false, false],
['v7.0.0-beta23', false, true],
['v7.2.3', false, true],
Expand Down

1 comment on commit 6b1a9da

@Tiffany1984
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Supported

Please sign in to comment.