We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c81adbd commit 9fa4373Copy full SHA for 9fa4373
packages/angular/cli/commands/xi18n-impl.ts
@@ -15,6 +15,15 @@ export class Xi18nCommand extends ArchitectCommand<Xi18nCommandSchema> {
15
public readonly multiTarget: true;
16
17
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
27
return this.runArchitectTarget(options);
28
}
29
0 commit comments