During refactoring, eg:
// We don't need `foo` at first.
doThingsWithoutFoo();
export {default as foo} from 'foo';
import {default as foo} from 'foo'; // Didn't mean to import like this, but changed from previous version
// We need `foo` now
doThingsWithFoo();
export {foo}
import {default as foo} from 'foo';
import {default as foo, bar} from 'foo';
import foo from 'foo';
import foo, {bar} from 'foo';
Should we check export?
export {foo as default};
export default foo;
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too