diff --git a/aio/tools/examples/example-boilerplate.js b/aio/tools/examples/example-boilerplate.js index f1290ad2fb..1248055aca 100644 --- a/aio/tools/examples/example-boilerplate.js +++ b/aio/tools/examples/example-boilerplate.js @@ -80,7 +80,9 @@ class ExampleBoilerPlate { } if (ivy) { - shelljs.exec(`yarn --cwd ${SHARED_PATH} ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points`); + // We only need the "es2015" bundles as the CLI webpack build does not need + // any other formats for building and serving. + shelljs.exec(`yarn --cwd ${SHARED_PATH} ngcc --properties es2015`); } exampleFolders.forEach(exampleFolder => {