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
Open this repo and run the bootstrap commands specified in README.md
Please also take a look at original-project-commonjs.output.js. I don't know what this invocation means there
exportdefaultcommonjsHelpers.unwrapExports(main);
In my minimum reproduction commonjs.output.js file there is no unwrapExports(), however the warning is still left
Expected Behavior
No warnings
Actual Behavior
I get the following warning:
~/my/junk/rollup (master) $ npx rollup -c
./main.js → ./main.bundle.js...
(!) Mixing named and default exports
https://rollupjs.org/guide/en/#output-exports
The following entry modules are using named and default exports together:
main.js
Consumers of your bundle will have to use chunk['default'] to access their default export, which may not be what you want. Use `output.exports: 'named'` to disable this warning
created ./main.bundle.js in 30ms
~/my/junk/rollup (master) $
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
1.31.0
Ubuntu 18.04.3 LTS
13.7.0
How Do We Reproduce?
Open this repo and run the bootstrap commands specified in
README.md
Please also take a look at
original-project-commonjs.output.js
. I don't know what this invocation means thereIn my minimum reproduction
commonjs.output.js
file there is nounwrapExports()
, however the warning is still leftExpected Behavior
No warnings
Actual Behavior
I get the following warning:
The text was updated successfully, but these errors were encountered: