huozhi / bunchee

Zero config bundler for ECMAScript and TypeScript packages
https://npmjs.com/bunchee
926 stars 29 forks source link

Fix missing nested exports #503

Closed huozhi closed 6 months ago

huozhi commented 6 months ago

Align the exports map keys, previously we're mixing . and ./index as the same one, now we need to align then as ./index. And then separate ./index from other special exports ./index.react-server in the entries.

Fixes #501 Fixes #502