We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b69ca3a commit f6984d5Copy full SHA for f6984d5
packages/angular/cli/commands/extract-i18n-impl.ts
@@ -14,16 +14,6 @@ export class ExtractI18nCommand extends ArchitectCommand<ExtractI18nCommandSchem
14
public override readonly target = 'extract-i18n';
15
16
public override async run(options: ExtractI18nCommandSchema & Arguments) {
17
- const version = process.version.substr(1).split('.');
18
- if (Number(version[0]) === 12 && Number(version[1]) === 0) {
19
- this.logger.error(
20
- 'Due to a defect in Node.js 12.0, the command is not supported on this Node.js version. ' +
21
- 'Please upgrade to Node.js 12.1 or later.',
22
- );
23
-
24
- return 1;
25
- }
26
27
return this.runArchitectTarget(options);
28
}
29
0 commit comments