Bundling - CI/CD Glossary Definition
Bundling combines many source modules and their dependencies into a smaller number of output files, resolving imports at build time so a browser or runtime fetches fewer files.
Tools
Webpack, Rollup, esbuild, and Vite are bundlers. Bundling is usually the heaviest part of a frontend CI build and a prime caching target.
Related guides
Code Splitting - CI/CD Glossary DefinitionCode Splitting: Code splitting breaks a bundle into multiple chunks that load on demand, so users download on…
Tree Shaking - CI/CD Glossary DefinitionTree Shaking: Tree shaking is a build optimization that removes exports and modules that are never imported a…
Minification - CI/CD Glossary DefinitionMinification: Minification rewrites source (typically JavaScript or CSS) to be smaller without changing behav…