build(docs-infra): do not ngcc the 'module' entry points (#32679)

CLI v8.3+ doesn't read them any more.

PR Close #32679
This commit is contained in:
Igor Minar 2019-09-14 07:36:39 -07:00 committed by atscott
parent ecd7554051
commit 84feda1db7
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ function _main() {
writeFileSync(tsConfigPath, newTsConfigStr);
// Run ngcc.
const ngccArgs = '--loglevel debug --properties es2015 module';
const ngccArgs = '--loglevel debug --properties es2015';
console.log(`\nRunning ngcc (with args: ${ngccArgs})...`);
exec(`yarn ivy-ngcc ${ngccArgs}`);