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
Hi @Lazyuki , thanks again for the plugin, I've been using it for a while now but noticed a bug on a certain case.
When we want to externalize a library, and we do it via ExportAllDeclaration or ExportNamedDeclaration the rename is not working. It does work in cjs mode but not in es mode.
Example:
export { default as Accordion } from '@mui/material/Accordion';
export * from '@mui/material/Accordion';
Result:
export { default as Accordion } from './node_modules/@mui/material/Accordion/Accordion.js';
export { default as accordionClasses, getAccordionUtilityClass } from './node_modules/@mui/material/Accordion/
Hi @Lazyuki , thanks again for the plugin, I've been using it for a while now but noticed a bug on a certain case.
When we want to externalize a library, and we do it via ExportAllDeclaration or ExportNamedDeclaration the rename is not working. It does work in
cjs
mode but not ines
mode.Example:
Result:
Rollup:
Demo:
See the example here: https://stackblitz.com/edit/node-o5xhzp?file=package.json
Simply run
yarn build
The text was updated successfully, but these errors were encountered: