I ran into this issue, the result was:
a boot output with everything
and each pages output with: undefined
It should be an empty string, not undefined, throw an error, or show a warning?
I patched my bunderl.js/lib/page.js this way:
// resolve boot bundles
flatten(locals[boot])
.forEach(function (branch) {
branch.bundle = boot;
var bootLocals = Object.keys(branch.locals);
if (bootLocals.length > 0) {
bootLocals.forEach(function (local) {
if (bundles.indexOf(local) != -1)
console.log('WARNING: dependency "'+local+'" is defined in both: root component and "'+branch.name+'"');
});
}
});