mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Previously, the list of missing dependencies was not explicitly joined, which resulted in the default `,` joiner being used during stringification. This commit explicitly joins the missing dependency lines to avoid unnecessary commas. Before: ``` The target entry-point "some-entry-point" has missing dependencies: - dependency 1 , - dependency 2 , - dependency 3 ``` After: ``` The target entry-point "some-entry-point" has missing dependencies: - dependency 1 - dependency 2 - dependency 3 ``` PR Close #33139 |
||
|---|---|---|
| .. | ||
| integrationtest | ||
| ngcc | ||
| src | ||
| test | ||
| BUILD.bazel | ||
| index.ts | ||
| ngtools2.ts | ||
| package.json | ||
| tsconfig-build.json | ||
| tsconfig.json | ||