angular-cn/packages
Pete Bacon Darwin 3dfc7703c2 fix(compiler-cli): ensure LogicalFileSystem maintains case in paths (#37008)
The work to support case-sensitivity in the `FileSystem` went too far
with the `LogicalFileSystem`, which is used to compute import paths
that will be added to files processed by ngtsc and ngcc.

Previously all logical paths were canonicalised, which meant that on
case-insensitive file-systems, the paths were all set to lower case.
This resulted in incorrect imports being added to files. For example:

```
import { Apollo } from './Apollo';
import { SelectPipe } from './SelectPipe';
import * as ɵngcc0 from '@angular/core';
import * as ɵngcc1 from './selectpipe';
```

The import from `./SelectPipe` is from the original file, while the
import from `./selectpipe` is added by ngcc. This causes the
TypeScript compiler to complain, or worse for paths not to be
matched correctly.

Now, when computing logical paths, the original absolute paths
are matched against rootDirs in a canonical manner, but the actual
logical path that is returned maintains it original casing.

Fixes #36992, #36993, #37000

PR Close #37008
2020-05-18 10:28:18 -07:00
..
animations build: simplify package.jsons for all of our packages (#36944) 2020-05-06 13:54:26 -07:00
bazel refactor: remove support for TypeScript 3.8 (#37129) 2020-05-18 09:13:37 -07:00
benchpress release(benchpress): bump version of benchpress to 0.2.0 (#36457) 2020-04-22 17:10:28 -04:00
common docs(common): English grammar (#36908) 2020-05-13 16:03:25 -07:00
compiler refactor(core): remove style sanitization code for `[style]`/`[style.prop]` bindings (#36965) 2020-05-13 15:56:12 -07:00
compiler-cli fix(compiler-cli): ensure LogicalFileSystem maintains case in paths (#37008) 2020-05-18 10:28:18 -07:00
core fix(core): Host classes should not be fed back into `@Input` (#35889) 2020-05-14 15:54:13 -07:00
docs docs(di): fix typo in advanced di doc (#36634) 2020-05-01 09:50:28 -07:00
elements build: simplify package.jsons for all of our packages (#36944) 2020-05-06 13:54:26 -07:00
examples test: enable importHelpers for UMD builds (#36989) 2020-05-14 10:50:30 -07:00
forms build: prepare for TypeScript 3.9 (#36989) 2020-05-14 10:50:28 -07:00
language-service test: update language service module resolution cache (#36989) 2020-05-14 10:50:30 -07:00
localize refactor(localize): use the `FileSystem` from ngtsc (#36843) 2020-05-13 15:52:48 -07:00
platform-browser refactor: disable sanitization for [style] and [style.prop] bindings (#35621) 2020-05-06 15:00:22 -07:00
platform-browser-dynamic build: simplify package.jsons for all of our packages (#36944) 2020-05-06 13:54:26 -07:00
platform-server feat(platform-server): use absolute URLs from Location for HTTP (#37071) 2020-05-13 16:00:02 -07:00
platform-webworker docs(platform-webworker): remove mention of version 10 (#37052) 2020-05-12 14:40:56 -07:00
platform-webworker-dynamic docs(platform-webworker): remove mention of version 10 (#37052) 2020-05-12 14:40:56 -07:00
private/testing build: reformat repo to new clang@1.4.0 (#36613) 2020-04-14 12:08:36 -07:00
router docs(router): filter the event to subscribe (#37027) 2020-05-14 12:01:46 -07:00
service-worker build: simplify package.jsons for all of our packages (#36944) 2020-05-06 13:54:26 -07:00
upgrade refactor: fix undecorated classes with angular features in repo (#36921) 2020-05-06 15:06:10 -07:00
zone.js build: prepare for TypeScript 3.9 (#36989) 2020-05-14 10:50:28 -07:00
BUILD.bazel build: reference zone.js from source directly instead of npm. (#33046) 2019-11-06 00:48:34 +00:00
README.md docs: add doc reference to npm package readme (#33911) 2019-11-20 14:46:23 -08:00
circular-deps-test.conf.js build: move circular deps golden to a subfolder (#36630) 2020-04-22 17:11:20 -04:00
empty.ts
goog.d.ts
license-banner.txt build: bump year (#34651) 2020-01-13 07:21:43 -08:00
system.d.ts build: no longer run tslint from within gulp task (#35800) 2020-03-03 09:20:49 -08:00
tsconfig-build-no-strict.json
tsconfig-build.json
tsconfig-test.json
tsconfig.json revert: "feat(dev-infra): exposed new rule 'component_benchmark' via dev_infra (#36434)" (#36798) 2020-04-24 11:03:38 -07:00
types.d.ts build: reformat repo to new clang@1.4.0 (#36613) 2020-04-14 12:08:36 -07:00

README.md

Angular

The sources for this package are in the main Angular repo. Please file issues and pull requests against that repo.

Usage information and reference details can be found in Angular documentation.

License: MIT