angular/packages/compiler-cli/ngcc
Pete Bacon Darwin 03fef736d6 test(ngcc): give adjacent class identifier a distinct name (#37206)
To better check that the code is working, this commit gives a
distinct name (`DecoratedWrappedClass_1`) to the "adjacent"
class declaration in the tests.

PR Close #37206
2020-05-20 13:30:31 -07:00
..
src fix(ngcc): support defineProperty() re-exports in CommonJS and UMD (#36989) 2020-05-14 10:50:29 -07:00
test test(ngcc): give adjacent class identifier a distinct name (#37206) 2020-05-20 13:30:31 -07:00
BUILD.bazel fix(ngcc): use path-mappings from tsconfig in dependency resolution (#36180) 2020-03-24 10:16:12 -07:00
index.ts build: prepare for TypeScript 3.9 (#36989) 2020-05-14 10:50:28 -07:00
main-ivy-ngcc.ts fix(ngcc): rename the executable from ivy-ngcc to ngcc (#33140) 2019-10-14 16:29:14 +00:00
main-ngcc.ts fix(ngcc): provide a unique exit code for timeouts (#36838) 2020-05-01 09:52:09 -07:00
README.md refactor(ivy): move ngcc into a higher level folder (#29092) 2019-03-20 14:45:54 -04:00

Angular Compatibility Compiler (ngcc)

This compiler will convert node_modules compiled with ngc, into node_modules which appear to have been compiled with ngtsc.

This conversion will allow such "legacy" packages to be used by the Ivy rendering engine.

Building

The project is built using Bazel:

yarn bazel build //packages/compiler-cli/ngcc

Unit Testing

The unit tests are built and run using Bazel:

yarn bazel test //packages/compiler-cli/ngcc/test

Integration Testing

There are tests that check the behavior of the overall executable:

yarn bazel test //packages/compiler-cli/ngcc/test:integration