Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 9bd05b5

Browse files
authored
Merge pull request #5797 from trufflesuite/bump-node-ver-check
Bump minimum Node version check to 14
2 parents 1328055 + 5bf3bda commit 9bd05b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ global.crypto = {
1717
};
1818

1919
// pre-flight check: Node version compatibility
20-
const minimumNodeVersion = "12.0.0";
20+
const minimumNodeVersion = "14.0.0";
2121
if (!semver.gte(process.version, minimumNodeVersion)) {
2222
console.log(
2323
"Error: Node version not supported. You are currently using version " +

0 commit comments

Comments
 (0)