You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 bundlesflatten(locals[boot]).forEach(function(branch){branch.bundle=boot;varbootLocals=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+'"');});}});
The text was updated successfully, but these errors were encountered:
timaschew
changed the title
file content is "undefined" if root.dependencies == boot.dependencies
file content is "undefined" if main.dependencies == boot.dependencies
Jun 9, 2014
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:
The text was updated successfully, but these errors were encountered: