Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(bazel): ng_package creates invalid typings reexport on windows (a…
…ngular#27829) Currently when building a package on Windows, the typings re-export for secondary entry-points is not valid TypeScript. Similarly the metadata and the "package.json" files use non-posix paths and cause inconsistency within the NPM package. For example: _package.json_ ``` "esm5": "./esm5\\core.js", "esm2015": "./esm2015\\core.js", ``` _testing.d.t.s_ (of the `core` package) ``` export * from './testing\testing'; ``` PR Close angular#27829
- Loading branch information