Skip to content

Commit

Permalink
fix: injectPrecacheManifest warning logging
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiVandivier committed Aug 27, 2024
1 parent 4f88ba2 commit a0d266e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/lib/pwa/injectPrecacheManifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function logManifestOutput({ count, filePaths, size, warnings }) {
reporter.debug(
`The service worker will precache ${count} URLs, totaling ${size} bytes.`
)
warnings.forEach(reporter.warn)
warnings.forEach((warning) => reporter.warn(warning))
}

/**
Expand Down

0 comments on commit a0d266e

Please sign in to comment.