Skip to content

Commit

Permalink
fix(@angular-devkit/build-angular): filter explicit external dependen…
Browse files Browse the repository at this point in the history
…cies for Vite prebundling

To ensure that Vite does not unintentionally attempt to prebundle a module that was explicitly
marked as external (typically via the `externalDependencies` build option), the full list of
externalized imports is now filtered by the dependencies specified within the external configuration.
Vite currently will include a module for prebundling if it is present in the include list even though
it may also be present in the exclude list.
  • Loading branch information
clydin authored and alan-agius4 committed Dec 22, 2023
1 parent 0d64ffc commit 874e576
Showing 1 changed file with 14 additions and 5 deletions.
Expand Up @@ -178,12 +178,21 @@ export async function executeBuild(

// Analyze external imports if external options are enabled
if (options.externalPackages || bundlingResult.externalConfiguration) {
const { browser = new Set(), server = new Set() } = bundlingResult.externalImports;
// TODO: Filter externalImports to generate third argument to support wildcard externalConfiguration values
const {
externalConfiguration,
externalImports: { browser, server },
} = bundlingResult;
const implicitBrowser = browser ? [...browser] : [];
const implicitServer = server ? [...server] : [];
// TODO: Implement wildcard externalConfiguration filtering
executionResult.setExternalMetadata(
[...browser],
[...server],
bundlingResult.externalConfiguration,
externalConfiguration
? implicitBrowser.filter((value) => !externalConfiguration.includes(value))
: implicitBrowser,
externalConfiguration
? implicitServer.filter((value) => !externalConfiguration.includes(value))
: implicitServer,
externalConfiguration,
);
}

Expand Down

0 comments on commit 874e576

Please sign in to comment.