mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
After updating to a more recent version of rollup, rollup started to complain because the `TreeParseResult` class is being re-exported twice in the `index.ts -> public-api.ts -> compiler.ts` entry-point. Rollup threw errors like: ``` Error: "ParseTreeResult" cannot be exported from <..>/ml_parser/parser.mjs as it is a re-export that references itself. ``` It seems like Rollup ideally would not throw here, similar to TypeScript which detects that these exports are the same and just dedupes them, but it's low-effort fixing this for now and actually is a good opportunity to make the public API a little more easy understand (when looking at the `compiler.ts` file). PR Close #43431 |
||
|---|---|---|
| .. | ||
| util | ||
| view | ||
| BUILD.bazel | ||
| r3_ast_absolute_span_spec.ts | ||
| r3_ast_spans_spec.ts | ||
| r3_template_transform_spec.ts | ||
| README.md | ||
| style_parser_spec.ts | ||
Tests in this directory are excluded from running in the browser and only run in node.