angular-docs-cn/packages/examples
Alan Agius bbd556ee9f test: enable importHelpers for UMD builds (#36989)
This is a workaround for a TS 3.9 regression https://github.com/microsoft/TypeScript/issues/38501 where the emitted `__exportStar` helpers have a missing semi-colon at the end of the unnamed function, when targetting UMD, and causes the following runtime error `Uncaught TypeError: (intermediate value)(…) is not a function`.

This is because the anonymous `__exportStar` function will be invoked with the function on the next like as the parameter which is subsequently invoking whatever was returned.

To get around this TS bug, add `importHelpers: true` in your tsconfig. This also, is recommanded to avoid multiple copies of the same helper being inlined, which might cause increase in bundle size.

PR Close #36989
2020-05-14 10:50:30 -07:00
..
common build: reformat repo to new clang@1.4.0 (#36613) 2020-04-14 12:08:36 -07:00
compiler
core build: reformat repo to new clang@1.4.0 (#36613) 2020-04-14 12:08:36 -07:00
forms build: reformat repo to new clang@1.4.0 (#36613) 2020-04-14 12:08:36 -07:00
http
platform-browser build: reformat repo to new clang@1.4.0 (#36613) 2020-04-14 12:08:36 -07:00
router/activated-route
service-worker
test-utils build: reformat repo to new clang@1.4.0 (#36613) 2020-04-14 12:08:36 -07:00
testing build: reformat repo to new clang@1.4.0 (#36613) 2020-04-14 12:08:36 -07:00
upgrade test: enable importHelpers for UMD builds (#36989) 2020-05-14 10:50:30 -07:00
BUILD.bazel
README.md
index.html
tsconfig-e2e.json

README.md

API Examples

This folder contains small example apps that get in-lined into our API docs. Each example contains tests for application behavior (as opposed to testing Angular's behavior) just like an Angular application developer would write.

Running the examples

# Serving individual examples (e.g. common)
yarn bazel run //packages/examples/common:devserver

# "core" examples
yarn bazel run //packages/examples/core:devserver

Running the tests

yarn bazel test //packages/examples/...