From 84feda1db76bed01b8e831acf2c6e80fc5e66635 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Sat, 14 Sep 2019 07:36:39 -0700 Subject: [PATCH] build(docs-infra): do not ngcc the 'module' entry points (#32679) CLI v8.3+ doesn't read them any more. PR Close #32679 --- aio/scripts/switch-to-ivy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/scripts/switch-to-ivy.js b/aio/scripts/switch-to-ivy.js index 9fc3a00bb2..feba4f47cd 100644 --- a/aio/scripts/switch-to-ivy.js +++ b/aio/scripts/switch-to-ivy.js @@ -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}`);