Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Workbox v5 (the webpack plugins, in particular) is in alpha 🎉
Alpha Release Notes
This gives us a few goodies:
The Service Worker script is now bundled with webpack (as a child compilation). We can use
import
statements directly, that get inlined by webpack. This skips theinjectScripts
auto-magic imports (and avoids some footguns). It is slightly smaller because of tree-shaking. I also find it more explicit and readable!The manifest is now inlined in the Service Worker script. One less thing to remember in setting up headers, and also reads a bit better imo.
We can use
dontCacheBustURLsMatching
to avoid revisioning assets with[contenthash]
. This allows the Service Worker to use the HTTP cache when precaching, which should yield some bandwidth savings, and maybe whatever load there is.Plan
Let's keep this running in deploy preview for now. I don't see any huge or breaking changes apart from the plugin so far. Might be good to send the Workbox team a message about the update experience!
Some brief notes:
importScripts(/* some local version of wb.js */)
would be added, withinjectManifest
. Now it isn't. This is ok, though I think the docs could be more explicit about "you know have to import things directly". It is described more as a "potential" than a "need" atm, which is not accurate.