tempest.games 0.3.18 → 0.3.19

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
  # tempest.games
2
2
 
3
+ ## 0.3.19
4
+
5
+ ### Patch Changes
6
+
7
+ - 30c15b5: 🐛 Fixed bug where routes would not be accessible from the browser url bar.
8
+
3
9
  ## 0.3.18
4
10
 
5
11
  ### Patch Changes
@@ -22120,7 +22120,7 @@ serve({
22120
22120
  }
22121
22121
  const fileExists = await file(normalizedPath).exists();
22122
22122
  if (!fileExists) {
22123
- return Response.redirect(`/`);
22123
+ return new Response(Bun.file(resolve2(appDir, `index.html`)));
22124
22124
  }
22125
22125
  return new Response(file(normalizedPath));
22126
22126
  } catch (thrown) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tempest.games",
3
- "version": "0.3.18",
3
+ "version": "0.3.19",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -50,9 +50,9 @@
50
50
  "socket.io-client": "4.8.3",
51
51
  "three": "0.182.0",
52
52
  "three-stdlib": "2.36.1",
53
+ "atom.io": "0.46.22",
53
54
  "safedeposit": "0.1.2",
54
- "treetrunks": "0.1.5",
55
- "atom.io": "0.46.22"
55
+ "treetrunks": "0.1.5"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@react-email/preview-server": "5.2.5",