Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions lib/services/bundler/bundler-compiler-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -916,13 +916,9 @@ export class BundlerCompilerService

const filesToCopy: string[] = [];

// default to ignoring vendor files as they are less likely to change during live reloads
const bundleFiles = emittedFiles.filter(
(file) =>
!file.includes("vendor") &&
(file.endsWith(".mjs") ||
file.endsWith(".js") ||
file.endsWith(".map")),
file.endsWith(".mjs") || file.endsWith(".js") || file.endsWith(".map"),
);
filesToCopy.push(...bundleFiles);

Expand Down