Dependency Graph - CI/CD用語集の定義
dependency graph は bundler が entry point から外側へ発見するすべての import 関係をマッピングします。
dependency graph は bundler が entry point から始めてすべての import をたどり、アプリが必要とするすべてのモジュールを発見して構築する有向グラフです。何が bundle され、コードをどのように分割できるかを決定します。
bundler は各 import をノードに、各 import 関係をエッジに解決し、chunking、tree shaking、順序付けを決定するために使うグラフを生成します。循環や未解決のエッジは build を壊す可能性があります。CIでは、未解決の依存関係はよくある build 失敗の原因です。
関連ガイド
Module Resolution - CI/CD Glossary DefinitionModule Resolution: Module resolution is the process a bundler or runtime uses to turn an import specifier (li…
Entry Point - CI/CD Glossary DefinitionEntry Point: An entry point is the file a bundler starts from when building the dependency graph. Each entry…
Module Bundler - CI/CD Glossary DefinitionModule Bundler: A module bundler is a bundler that understands module systems (ES modules, CommonJS) and stit…