@spencer-kit/coder-studio 0.5.2 → 0.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.5.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#80](https://github.com/spencerkit/coder-studio/pull/80) [`c62bdc4`](https://github.com/spencerkit/coder-studio/commit/c62bdc450b83caf094ef68ef5486286541f47b9f) Thanks [@pallyoung](https://github.com/pallyoung)! - Fix server startup failure when bundled web assets include `dev-browser-sw.js` by excluding the service worker from static file glob registration.
8
+
3
9
  ## 0.5.2
4
10
 
5
11
  ### Patch Changes
package/dist/esm/bin.mjs CHANGED
@@ -5801,7 +5801,7 @@ async function buildFastifyApp(deps) {
5801
5801
  root: deps.webRoot,
5802
5802
  prefix: "/",
5803
5803
  wildcard: false,
5804
- globIgnore: ["index.html", "assets/**"],
5804
+ globIgnore: ["index.html", "assets/**", "dev-browser-sw.js"],
5805
5805
  maxAge: "1y",
5806
5806
  immutable: true
5807
5807
  });