Skip to content

Commit

Permalink
chore: set minimum node version for dev to 18 (#4219)
Browse files Browse the repository at this point in the history
Co-authored-by: Steven Lambert <2433219+straker@users.noreply.github.com>
  • Loading branch information
WilcoFiers and straker authored Oct 26, 2023
1 parent 9b8785c commit dc202ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/check-node-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const currentVersion = process.version.replace('v', '');

const minimumVersionMajor = 12;
const minimumVersionMajor = 18;
const currentVersionMajor = parseInt(currentVersion.split('.')[0]);

const usesMinimumVersion = currentVersionMajor >= minimumVersionMajor;
Expand Down

0 comments on commit dc202ff

Please sign in to comment.