main
Commits on Aug 26, 2022
-
-
-
test: account for module resolution differences
In some cases due to module resolution '@ngtools' might already been under `@angular-devkit/build-angular`.
-
test: remove hardcoded worker chunk id
This commit changes how we retrieve the worker chunk Id. Prior to this change we hard coded the value, now we get it by reading the file names on disk.
Commits on Aug 25, 2022
-
update to the latest version of ng-dev
-
fix(@angular-devkit/build-angular): correct esbuild builder global st…
…ylesheet sourcemap URL The sourcemap URL in the output CSS files for global stylesheets is now correctly updated to reflect the name of the global stylesheet output file and not the internal `stdin` virtual file name.
Commits on Aug 23, 2022
-
perf(@angular-devkit/build-angular): with esbuild builder only load S…
…ass compiler when needed Previously, the Sass compiler was imported on the start of every build regardless of its usage. The Sass compiler will now only be loaded if a Sass stylesheet is requested.
-
perf(@angular-devkit/build-angular): avoid extra string creation with…
… no sourcemaps for esbuild sass When using the experimental esbuild-based browser application builder with Sass stylesheets, an additional string creation for each output stylesheet will now be avoided when sourcemaps are disabled.
-
refactor(@angular-devkit/build-angular): process esbuild builder glob…
…al stylesheets and code at the same time The global stylesheet processing using esbuild and the code bundling that also uses esbuild are now executed asynchronously. Previously, the global stylesheet processing was required to wait until the code bundling was complete before starting. Any warnings and/or errors for global stylesheets will also now be shown even if there are errors during code bundling.
-
refactor(@angular-devkit/build-angular): move esbuild builder global …
…stylesheet bundling into separate function The global stylesheet bundling and processing code has been moved out of the main builder execution function and into a separate function. This shortens the length of the main execution function for the builder and also allows for further refactoring to allow the code and global stylesheet bundling to be executed at the same time.
Commits on Aug 22, 2022
-
-
refactor(@angular/cli): update analytics prompt copy
Swapping `anonymous` for `pseudonymous` to align with privacy communication guidelines.
-
fix(@angular-devkit/build-angular): correctly handle parenthesis in url
-
-
build: update to TypeScript 4.8 RC
Updates to the TypeScript 4.8 RC and adds some code to account for a breaking change where the decorators and modifiers of an AST node have been combined into a single array.
Commits on Aug 17, 2022
Commits on Aug 16, 2022
Commits on Aug 15, 2022
Commits on Aug 12, 2022
-
ci: update
ChromeDriverto104.0.5112.79Attempt to solve Windows E2E flakes
-
-
-
-
-
refactor(@angular-devkit/schematics): reduce RxJS usage in callRule/c…
…allSource functions The amount of additional RxJS operators and chaining has been reduced within the `callRule` and `callSource` functions. This also reduces the complexity of the code and removes several repetitive code segments.
Commits on Aug 11, 2022
-
This was deleted by mistake
-
refactor(@angular-devkit/core): remove deprecated rxjs
emptyfuncti……on usage The RxJS `empty` function is deprecated and will be removed in future versions. The `EMPTY` constant is the recommended replacement.
-
fix(@angular-devkit/core): update workspace extension warning to use …
…correct phrasing