Skip to content

Commit fdb16f7

Browse files
ocombealan-agius4
authored andcommittedAug 29, 2023
fix(@angular-devkit/build-angular): use correct type for extraEntryPoints
(cherry picked from commit 7970c3f)
1 parent 82b0f94 commit fdb16f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/angular_devkit/build_angular/src/utils/package-chunk-sort.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export function generateEntryPoints(options: {
1818
}): EntryPointsType[] {
1919
// Add all styles/scripts, except lazy-loaded ones.
2020
const extraEntryPoints = (
21-
extraEntryPoints: (ScriptElement | ScriptElement)[],
21+
extraEntryPoints: (ScriptElement | StyleElement)[],
2222
defaultBundleName: string,
2323
) => {
2424
const entryPoints = normalizeExtraEntryPoints(extraEntryPoints, defaultBundleName)

0 commit comments

Comments
 (0)
Please sign in to comment.