Skip to content

Commit f251d6a

Browse files
gkalpakvikerman
authored andcommitted
fix(@schematics/angular): rename the ivy-ngcc command to ngcc
With angular/angular#33140, the Angular Compatibility Compiler executable will be renamed from `ivy-ngcc` to `ngcc`.
1 parent af14386 commit f251d6a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/schematics/angular/workspace/files/package.json.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"test": "ng test",
99
"lint": "ng lint",
1010
"e2e": "ng e2e",
11-
"postinstall": "ivy-ngcc --properties es2015 --create-ivy-entry-points"
11+
"postinstall": "ngcc --properties es2015 --create-ivy-entry-points"
1212
},
1313
"private": true,
1414
"dependencies": {

scripts/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export default function(args: ParsedArgs, logger: logging.Logger) {
9595
} else if (args.shard !== undefined) {
9696
// CI is really flaky with NGCC
9797
// This is a working around test order and isolation issues.
98-
execSync('./node_modules/.bin/ivy-ngcc', { stdio: 'inherit' });
98+
execSync('./node_modules/.bin/ngcc', { stdio: 'inherit' });
9999
}
100100

101101
if (args.large) {

0 commit comments

Comments
 (0)