Skip to content

Commit

Permalink
Update minimum NodeJS version
Browse files Browse the repository at this point in the history
  • Loading branch information
jiribenes authored Sep 23, 2024
1 parent b3d30d0 commit b7551fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/effektManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}.`);
Expand Down

0 comments on commit b7551fb

Please sign in to comment.