Skip to content

Commit

Permalink
fix(angular): extract remotes from manifest correctly #19880 (#19894)
Browse files Browse the repository at this point in the history
  • Loading branch information
Coly010 committed Oct 31, 2023
1 parent 3cd55f6 commit 8ec589d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function extractRemoteProjectsFromConfig(
typeof key === 'string' && typeof parsedManifest[key] === 'string'
)
) {
remotes.push(Object.keys(parsedManifest));
remotes.push(...Object.keys(parsedManifest));
}
}
}
Expand Down

0 comments on commit 8ec589d

Please sign in to comment.