Skip to content

Commit 54a17c6

Browse files
committed
Fix binary size script
1 parent cdfc931 commit 54a17c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/size_report/report_binary_size.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function generateReportForCDNScripts(): Report[] {
5757
...special_files.map((file: string) => `${firebaseRoot}/${file}`),
5858
...pkgJson.components.map(
5959
(component: string) =>
60-
`${firebaseRoot}/firebase-${component.replace('/', '-')}.js`
60+
`${firebaseRoot}/firebase-${component.replaceAll('/', '-')}.js`
6161
),
6262
...compatPkgJson.components.map(
6363
(component: string) => `${firebaseRoot}/firebase-${component}-compat.js`

0 commit comments

Comments
 (0)