From 6508e833df35a3caeb2b496f120ce67feff306b6 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Tue, 22 Oct 2019 09:44:50 -0700 Subject: [PATCH] unsupported: add node v13 PR-URL: https://github.com/npm/cli/pull/269 Credit: @ljharb Close: #269 Reviewed-by: @mikemimik --- lib/utils/unsupported.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/utils/unsupported.js b/lib/utils/unsupported.js index 20cee157ee403..aaae8c4426653 100644 --- a/lib/utils/unsupported.js +++ b/lib/utils/unsupported.js @@ -6,7 +6,8 @@ var supportedNode = [ {ver: '9', min: '9.0.0'}, {ver: '10', min: '10.0.0'}, {ver: '11', min: '11.0.0'}, - {ver: '12', min: '12.0.0'} + {ver: '12', min: '12.0.0'}, + {ver: '13', min: '13.0.0'} ] var knownBroken = '<6.0.0'