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

Commit a49931b

Browse files
authored
Merge pull request #6184 from trufflesuite/node-check
Enforce new minimum node version
2 parents 24fa718 + f49543f commit a49931b

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
@@ -16,7 +16,7 @@ global.crypto = {
1616
};
1717

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

0 commit comments

Comments
 (0)