ソースマップアップロードとは?
ソースマップアップロードとは、build 中に生成されたソースマップをエラー監視サービスへ送り出す、リリース pipeline のステップです。ソースマップは、圧縮され bundle 化された出力を元のソース行にマッピングし直します。それがアップロードされていれば、本番のエラーは難読化された位置ではなく読みやすいスタックトレースを表示します。
なぜ重要か
ソースマップがアップロードされていないと、本番のクラッシュレポートは読めない圧縮コードを指し示します。CI で、その正確な build に紐づけてアップロードすると、リリースごとにトレースの正確さを保てます。
関連ガイド
What Is a Bundle Analyzer?A bundle analyzer is a tool that visualizes a build output, showing which modules and dependencies take up th…
What Is an Error Boundary?An error boundary is a component that catches rendering errors in the subtree below it and shows a fallback U…
What Is Release Notes Generation?Release notes generation automatically assembles a summary of what changed in a release from commit messages,…