1 Repo
Techniques for replacing inline helper functions with references to a shared external runtime library to reduce bundle size.
Distinct from External Asset Referencing: Existing candidates focus on asset linking or infrastructure resources, not code-level helper deduplication.
Explore 1 awesome GitHub repository matching web development · Shared Runtime Referencing. Refine with filters or upvote what's useful.
babel-loader is a webpack plugin that integrates the Babel compiler into a module bundling workflow. It serves as a bridge that allows modern JavaScript to be transpiled into backward-compatible versions during the build process. The project optimizes bundle sizes by replacing duplicated helper functions with references to a shared external runtime. To accelerate subsequent compilation cycles, it utilizes a filesystem-based cache to store processed files and avoid redundant transpilation. The loader supports environment-specific configuration mapping and target configurations to apply differ
Reduces final bundle size by replacing duplicated helper functions with imports from a shared external runtime.