From 52f057c360ba443ecbe6d4bca772487594e88006 Mon Sep 17 00:00:00 2001 From: Damien Urruty Date: Mon, 26 Sep 2022 10:38:30 +0200 Subject: [PATCH] SLI-756 Update minimal supported node version in notification --- .../notifications/AnalysisRequirementNotifications.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/sonarlint/intellij/notifications/AnalysisRequirementNotifications.java b/src/main/java/org/sonarlint/intellij/notifications/AnalysisRequirementNotifications.java index ae0e9744ae..ae758baf15 100644 --- a/src/main/java/org/sonarlint/intellij/notifications/AnalysisRequirementNotifications.java +++ b/src/main/java/org/sonarlint/intellij/notifications/AnalysisRequirementNotifications.java @@ -105,7 +105,7 @@ private static void createNotificationOnce(Project project, String title, String public static void notifyNodeCommandException(Project project) { var notification = ANALYZER_REQUIREMENT_GROUP.createNotification( "SonarLint - Node.js Required", - "Node.js >= 8.x is required to perform JavaScript or TypeScript analysis. Check the SonarLint Log for details.", + "Node.js >= 16.x is required to perform JavaScript or TypeScript analysis. Check the SonarLint Log for details.", NotificationType.WARNING, null); notification.setImportant(true); notification.notify(project);