Skip to content

Commit

Permalink
chore: Bump Node.js supported version as it's getting EOL (#9760)
Browse files Browse the repository at this point in the history
  • Loading branch information
mshabarov authored Oct 4, 2021
1 parent 4ef795c commit b92cc98
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ public class FrontendTools {
private static final FrontendVersion WHITESPACE_ACCEPTING_NPM_VERSION = new FrontendVersion(
7, 0);

private static final int SUPPORTED_NODE_MAJOR_VERSION = 10;
private static final int SUPPORTED_NODE_MINOR_VERSION = 0;
private static final int SUPPORTED_NPM_MAJOR_VERSION = 5;
private static final int SUPPORTED_NPM_MINOR_VERSION = 6;
private static final int SUPPORTED_NODE_MAJOR_VERSION = 12;
private static final int SUPPORTED_NODE_MINOR_VERSION = 22;
private static final int SUPPORTED_NPM_MAJOR_VERSION = 6;
private static final int SUPPORTED_NPM_MINOR_VERSION = 14;
private static final int SHOULD_WORK_NODE_MAJOR_VERSION = 8;
private static final int SHOULD_WORK_NODE_MINOR_VERSION = 9;
private static final int SHOULD_WORK_NPM_MAJOR_VERSION = 5;
Expand Down

0 comments on commit b92cc98

Please sign in to comment.