From 15920c7a31f977ad8ef19bbee8bd98d7830e16ad Mon Sep 17 00:00:00 2001 From: Jack Cherng Date: Fri, 1 Nov 2024 16:45:58 +0800 Subject: [PATCH] chore: bump min Node.js version to v14.18.0 That's the min version which can start the server. Signed-off-by: Jack Cherng --- plugin/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/client.py b/plugin/client.py index 63fe27a..795951d 100644 --- a/plugin/client.py +++ b/plugin/client.py @@ -54,7 +54,7 @@ def required_node_version(cls) -> str: Testing playground at https://semver.npmjs.com And `0.0.0` means "no restrictions". """ - return ">=14" + return ">=14.18.0" @classmethod def should_ignore(cls, view: sublime.View) -> bool: