Paul Gschwendtner
5c2a90814b
fix(bazel): ng_package rule creates incorrect UMD module exports (#35792)
The `ng_package` rule currently creates incorrect UMD module exports if an entry-point has a module name with numbers included. For example, consider an entry-point called `@angular/cdk/a11y`. The UMD module name should be `ng.cdk.a11y`. Instead, `ng_package` currently generates an UMD module export called `ng.cdk.a11Y`. This is because the logic for converting dash-case to camel case is invalid as it uses Starlark's `title()` method. The title method converts text to title case while we actually just want to capitalize the first letter of a dash-case segment. Fixes angular/components#18652. PR Close #35792
build: migrate references and scripts that set to build with ivy via compile=aot to use config=ivy (#33983)
Angular
Angular is a development platform for building mobile and desktop web applications using TypeScript/JavaScript and other languages.
Quickstart
Changelog
Learn about the latest improvements.
Want to help?
Want to file a bug, contribute some code, or improve documentation? Excellent! Read up on our guidelines for contributing and then check out one of our issues in the hotlist: community-help.
Description
Languages
TypeScript
68.6%
HTML
12.8%
JavaScript
8.4%
Pug
7%
Starlark
1.4%
Other
1.7%