jargon

Frontend & browser·Modules, bundling and the build

you imported one icon from the package index and the build pulled in every icon it exports.

Barrel file

Also calledindex re-export, barrel export

An `index` module that re-exports everything in a directory so consumers can import from one path. It is pleasant to write against and a well-known cause of bloat, because tree shaking through a large re-export chain often fails and because the module graph gains a node that depends on everything. Deep imports are uglier and reliably smaller.

Commonly confused with