Skip to content

Commit 9fa4373

Browse files
committed
fix(@angular/cli): show error when using x18n command on Node.js 12.0
Node.js 12.0 contains a defect which will cause the command to crash. This is due to the locale support in Node.js 12.0 (ICU). ref: nodejs/node#27379
1 parent c81adbd commit 9fa4373

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

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

+9
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@ export class Xi18nCommand extends ArchitectCommand<Xi18nCommandSchema> {
1515
public readonly multiTarget: true;
1616

1717
public async run(options: Xi18nCommandSchema & Arguments) {
18+
const version = process.version.substr(1).split('.');
19+
if (Number(version[0]) === 12 && Number(version[1]) === 0) {
20+
this.logger.error(
21+
'Due to a defect in Node.js 12.0, the command is not supported on this Node.js version. '
22+
+ 'Please upgrade to Node.js 12.1 or later.');
23+
24+
return 1;
25+
}
26+
1827
return this.runArchitectTarget(options);
1928
}
2029
}

0 commit comments

Comments
 (0)