Minification - CI/CD Glossary Definition
Minification transforms source into a functionally identical but smaller form - stripping whitespace and comments, shortening identifiers - to cut bytes transferred; it pairs with source maps to keep debugging possible.
Related guides
Source Map - CI/CD Glossary DefinitionA source map links minified or transpiled output back to original source, so stack traces and debuggers point…
Tree Shaking - CI/CD Glossary DefinitionTree shaking removes code that is never imported or used from a bundle by analyzing the module graph, shrinki…
Bundle Splitting - CI/CD Glossary DefinitionBundle splitting breaks a build into multiple chunks so the browser loads only what a page needs, improving i…