Skip to content

Commit

Permalink
fix(@angular-devkit/build-angular): use correct type for `extraEntryP…
Browse files Browse the repository at this point in the history
…oints`

(cherry picked from commit 7970c3f)
  • Loading branch information
ocombe authored and alan-agius4 committed Aug 29, 2023
1 parent 82b0f94 commit fdb16f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function generateEntryPoints(options: {
}): EntryPointsType[] {
// Add all styles/scripts, except lazy-loaded ones.
const extraEntryPoints = (
extraEntryPoints: (ScriptElement | ScriptElement)[],
extraEntryPoints: (ScriptElement | StyleElement)[],
defaultBundleName: string,
) => {
const entryPoints = normalizeExtraEntryPoints(extraEntryPoints, defaultBundleName)
Expand Down

0 comments on commit fdb16f7

Please sign in to comment.