Skip to content

Commit d49dd9a

Browse files
authored
fix(build): Add missing debug logger plugin in debug.min bundle variant config (#5192)
This restores the plugin which includes debug logging in the configuration for our `.debug.min` bundles. (It was accidentally dropped in #5142.)
1 parent f477a73 commit d49dd9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rollup/bundleHelpers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export function makeBundleConfigVariants(baseConfig, options = {}) {
157157
output: {
158158
entryFileNames: chunkInfo => `${baseConfig.output.entryFileNames(chunkInfo)}.debug.min.js`,
159159
},
160-
plugins: [terserPlugin],
160+
plugins: [includeDebuggingPlugin, terserPlugin],
161161
},
162162
};
163163

0 commit comments

Comments
 (0)