Skip to content

Commit b18b9c8

Browse files
committed
fix(@angular/build): remove duplicate prebundling warning
This warning is already displayed during the normalization of options. See: https://github.com/angular/angular-cli/blob/b5a86709b7c035c129f5a9d8f1f684169432195e/packages/angular/build/src/builders/dev-server/options.ts#L56 (cherry picked from commit beab546)
1 parent 4575265 commit b18b9c8

File tree

1 file changed

+0
-7
lines changed
  • packages/angular/build/src/builders/dev-server

1 file changed

+0
-7
lines changed

packages/angular/build/src/builders/dev-server/builder.ts

-7
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,6 @@ export async function* execute(
5656

5757
const { builderName, normalizedOptions } = await initialize(options, projectName, context);
5858

59-
// Warn if the initial options provided by the user enable prebundling but caching is disabled
60-
if (options.prebundle && !normalizedOptions.cacheOptions.enabled) {
61-
context.logger.warn(
62-
`Prebundling has been configured but will not be used because caching has been disabled.`,
63-
);
64-
}
65-
6659
yield* serveWithVite(
6760
normalizedOptions,
6861
builderName,

0 commit comments

Comments
 (0)