From b92cc98af55208b42829459ee76491b2b79af205 Mon Sep 17 00:00:00 2001 From: Mikhail Shabarov <61410877+mshabarov@users.noreply.github.com> Date: Mon, 4 Oct 2021 22:15:00 +0300 Subject: [PATCH] chore: Bump Node.js supported version as it's getting EOL (#9760) --- .../com/vaadin/flow/server/frontend/FrontendTools.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flow-server/src/main/java/com/vaadin/flow/server/frontend/FrontendTools.java b/flow-server/src/main/java/com/vaadin/flow/server/frontend/FrontendTools.java index 30563ce2ff6..c695bd69c40 100644 --- a/flow-server/src/main/java/com/vaadin/flow/server/frontend/FrontendTools.java +++ b/flow-server/src/main/java/com/vaadin/flow/server/frontend/FrontendTools.java @@ -102,10 +102,10 @@ public class FrontendTools { private static final FrontendVersion WHITESPACE_ACCEPTING_NPM_VERSION = new FrontendVersion( 7, 0); - private static final int SUPPORTED_NODE_MAJOR_VERSION = 10; - private static final int SUPPORTED_NODE_MINOR_VERSION = 0; - private static final int SUPPORTED_NPM_MAJOR_VERSION = 5; - private static final int SUPPORTED_NPM_MINOR_VERSION = 6; + private static final int SUPPORTED_NODE_MAJOR_VERSION = 12; + private static final int SUPPORTED_NODE_MINOR_VERSION = 22; + private static final int SUPPORTED_NPM_MAJOR_VERSION = 6; + private static final int SUPPORTED_NPM_MINOR_VERSION = 14; private static final int SHOULD_WORK_NODE_MAJOR_VERSION = 8; private static final int SHOULD_WORK_NODE_MINOR_VERSION = 9; private static final int SHOULD_WORK_NPM_MAJOR_VERSION = 5;