From b7551fbf5d68e3ca892ba8c1f6c828bca73101db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Bene=C5=A1?= Date: Mon, 23 Sep 2024 15:07:17 +0200 Subject: [PATCH] Update minimum NodeJS version --- src/effektManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/effektManager.ts b/src/effektManager.ts index 5f9c3b6..f85019b 100644 --- a/src/effektManager.ts +++ b/src/effektManager.ts @@ -348,7 +348,7 @@ export class EffektManager { const nodeVersion = await this.execCommand('node --version'); await this.execCommand('npm --version'); // Note: if needed, we could also check npm version. - const minNodeVersion = 'v12.0.0'; // Minimum supported Node.js version + const minNodeVersion = 'v16.0.0'; // Minimum supported Node.js version if (compareVersion(nodeVersion, minNodeVersion, '<')) { this.showErrorWithLogs(`Node.js version ${minNodeVersion} or higher is required. You have ${nodeVersion}.`);