Entry Point - CI/CD用語集の定義
entry point は、bundler がアプリ内のすべてのモジュールを発見するためにたどる起点となるファイルです。
entry point は、bundler が依存関係グラフを構築するときに起点とするファイルです。各 entry は 1 つの entry chunk を生成し、マルチページアプリはしばしば複数の entry point を定義します。
bundler は entry point を読み取り、その import を解決し、外側へたどって完全なグラフを構築します。webpack の entry や Rollup の input オプションのような設定でそれを宣言します。CI では、entry point のパスが誤っていると build は直ちに失敗します。
関連ガイド
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…
Chunk - CI/CD Glossary DefinitionChunk: A chunk is one of the output files a bundler produces when it splits code. Each chunk groups a set of…