Skip to content

Commit 9fe5575

Browse files
clydinfilipesilva
authored andcommitted
feat(@angular/cli): officially support Node.js v16
Node.js v16 will be entering an LTS state prior to the release of Angular v13 which allows Node.js v16 to be marked as officially supported by the Angular CLI. The initial bootstrapping check now adds Node.js v16 to the output message in the event of an unsupported Node.js version. NOTE: Prior to the final v13 release, the Node.js v16 minor should be updated to the actual LTS version once available.
1 parent a8855a0 commit 9fe5575

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

lib/packages.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function loadPackageJson(p: string) {
8585
// Overwrite engines to a common default.
8686
case 'engines':
8787
pkg['engines'] = {
88-
'node': '^12.20.0 || >=14.0.0',
88+
'node': '^12.20.0 || ^14.15.0 || >=16.10.0',
8989
'npm': '^6.11.0 || ^7.5.6',
9090
'yarn': '>= 1.13.0',
9191
};

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"url": "https://github.com/angular/angular-cli.git"
4141
},
4242
"engines": {
43-
"node": "^12.20.0 || ^14.0.0",
43+
"node": "^12.20.0 || ^14.15.0 || ^16.10.0",
4444
"yarn": ">=1.21.1 <2",
4545
"npm": "Please use yarn instead of NPM to install dependencies"
4646
},

packages/angular/cli/bin/ng.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ try {
2424
// These may not support ES2015 features such as const/let/async/await/etc.
2525
// These would then crash with a hard to diagnose error message.
2626
var version = process.versions.node.split('.').map((part) => Number(part));
27-
if (version[0] % 2 === 1 && version[0] > 14) {
28-
// Allow new odd numbered releases with a warning (currently v15+)
27+
if (version[0] % 2 === 1 && version[0] > 16) {
28+
// Allow new odd numbered releases with a warning (currently v17+)
2929
console.warn(
3030
'Node.js version ' +
3131
process.version +
@@ -38,15 +38,17 @@ if (version[0] % 2 === 1 && version[0] > 14) {
3838
} else if (
3939
version[0] < 12 ||
4040
version[0] === 13 ||
41+
version[0] === 15 ||
4142
(version[0] === 12 && version[1] < 20) ||
42-
(version[0] === 14 && version[1] < 15)
43+
(version[0] === 14 && version[1] < 15) ||
44+
(version[0] === 16 && version[1] < 10)
4345
) {
44-
// Error and exit if less than 12.20 or 13.x or less than 14.15
46+
// Error and exit if less than 12.20 or 13.x or less than 14.15 or 15.x or less than 16.10
4547
console.error(
4648
'Node.js version ' +
4749
process.version +
4850
' detected.\n' +
49-
'The Angular CLI requires a minimum Node.js version of either v12.20 or v14.15.\n\n' +
51+
'The Angular CLI requires a minimum Node.js version of either v12.20, v14.15, or v16.10.\n\n' +
5052
'Please update your Node.js version or visit https://nodejs.org/ for additional instructions.\n',
5153
);
5254

packages/angular/cli/commands/version-impl.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { Schema as VersionCommandSchema } from './version';
1616
/**
1717
* Major versions of Node.js that are officially supported by Angular.
1818
*/
19-
const SUPPORTED_NODE_MAJORS = [12, 14];
19+
const SUPPORTED_NODE_MAJORS = [12, 14, 16];
2020

2121
interface PartialPackageInfo {
2222
name: string;

packages/angular/cli/lib/cli/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ const isDebug = debugEnv !== undefined && debugEnv !== '0' && debugEnv.toLowerCa
2323
export default async function (options: { testing?: boolean; cliArgs: string[] }) {
2424
// This node version check ensures that the requirements of the project instance of the CLI are met
2525
const version = process.versions.node.split('.').map((part) => Number(part));
26-
if (version[0] < 12 || (version[0] === 12 && version[1] < 14)) {
26+
if (version[0] < 12 || (version[0] === 12 && version[1] < 20)) {
2727
process.stderr.write(
2828
`Node.js version ${process.version} detected.\n` +
29-
'The Angular CLI requires a minimum v12.14.\n\n' +
29+
'The Angular CLI requires a minimum v12.20.\n\n' +
3030
'Please update your Node.js version or visit https://nodejs.org/ for additional instructions.\n',
3131
);
3232

tests/legacy-cli/e2e/tests/commands/add/version-specifier.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ export default async function () {
2222
throw new Error('Installation should not have been skipped');
2323
}
2424

25-
const output3 = await ng('add', '@angular/[email protected]', '--skip-confirmation');
25+
// v12.2.0 has a package.json engine field that supports Node.js v16+
26+
const output3 = await ng('add', '@angular/[email protected]', '--skip-confirmation');
2627
if (output3.stdout.includes('Skipping installation: Package already installed')) {
2728
throw new Error('Installation should not have been skipped');
2829
}

0 commit comments

Comments
 (0)