Module Bundler - CI/CD用語集の定義
module bundler は、コードベース全体の import 文を解決し、参照されたモジュールを出力ファイルにパッケージ化します。
module bundler は、モジュールシステム (ES modules、CommonJS) を理解し、import されたモジュールを出力 chunk へとつなぎ合わせる bundler です。JavaScript アプリケーションに使われる特定の種類の bundler です。
module bundler は entry point を読み取り、すべての import と require をたどって依存関係グラフを生成し、それを chunk へと平坦化します。CI では、module bundler の build 失敗は通常、依存関係の欠落または解決できない import パスを意味します。
関連ガイド
Bundler - CI/CD Glossary DefinitionBundler: A bundler is a build tool that combines many source modules and their dependencies into a smaller se…
Dependency Graph - CI/CD Glossary DefinitionDependency Graph: A dependency graph is the directed graph a bundler builds by starting at entry points and f…
Module Resolution - CI/CD Glossary DefinitionModule Resolution: Module resolution is the process a bundler or runtime uses to turn an import specifier (li…