Skip to content

Commit 8e117c6

Browse files
saikumarrsCopilot
andauthored
chore: update packages/analytics-js/rollup.config.mjs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 2fa673a commit 8e117c6

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

packages/analytics-js/rollup.config.mjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,10 @@ const getExternalsConfig = () => {
194194
// Output in console to assist debugging bundle builds
195195
const configSummaryOutput = () => {
196196
if (isLiteBuild) {
197-
console.log(`Lite Bundle. Excluding device mode plugins.`);
197+
const excludedPlugins = Object.keys(getExternalsConfig());
198+
console.log(
199+
`Lite Bundle. Excluding plugins (via externals config): ${excludedPlugins.join(', ')}`
200+
);
198201
} else if (isDynamicCustomBuild) {
199202
console.log(`Custom Bundle. Including plugins: ${bundledPluginsList}`);
200203
}

0 commit comments

Comments
 (0)