tempest.games 0.2.79 → 0.2.81
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 +15 -0
- package/app/assets/{index-DbvMRLrQ.js → index-HwPyOlk5.js} +18 -18
- package/app/index.html +1 -1
- package/bin/backend.bun.js +8 -1
- package/bin/backend.worker.game.bun.js +7 -0
- package/bin/backend.worker.tribunal.bun.js +562 -433
- package/bin/frontend.bun.js +8 -1
- package/bin/setup-db.bun.js +1 -1
- package/package.json +4 -4
package/bin/frontend.bun.js
CHANGED
|
@@ -11432,6 +11432,13 @@ var usersInRooms = join({
|
|
|
11432
11432
|
isAType: isRoomKey,
|
|
11433
11433
|
isBType: isUserKey
|
|
11434
11434
|
});
|
|
11435
|
+
var ownersOfRooms = join({
|
|
11436
|
+
key: `ownersOfRooms`,
|
|
11437
|
+
between: [`user`, `room`],
|
|
11438
|
+
cardinality: `1:n`,
|
|
11439
|
+
isAType: isUserKey,
|
|
11440
|
+
isBType: isRoomKey
|
|
11441
|
+
});
|
|
11435
11442
|
var usersInMyRoomView = selectorFamily({
|
|
11436
11443
|
key: `usersInMyRoomView`,
|
|
11437
11444
|
get: (myUsername) => ({ find }) => {
|
|
@@ -11816,7 +11823,7 @@ import { createServer as createHttpServer } from "http";
|
|
|
11816
11823
|
import { createServer as createSecureServer } from "https";
|
|
11817
11824
|
import { resolve } from "path";
|
|
11818
11825
|
|
|
11819
|
-
// ../../node_modules/.pnpm/@t3-oss+env-core@0.13.8_arktype@2.1.27_typescript@5.9.3_zod@4.1.
|
|
11826
|
+
// ../../node_modules/.pnpm/@t3-oss+env-core@0.13.8_arktype@2.1.27_typescript@5.9.3_zod@4.1.13/node_modules/@t3-oss/env-core/dist/src-Bb3GbGAa.js
|
|
11820
11827
|
function ensureSynchronous(value2, message) {
|
|
11821
11828
|
if (value2 instanceof Promise)
|
|
11822
11829
|
throw new Error(message);
|
package/bin/setup-db.bun.js
CHANGED
|
@@ -5565,7 +5565,7 @@ async function migrate(db, config) {
|
|
|
5565
5565
|
await db.dialect.migrate(migrations, db.session, config);
|
|
5566
5566
|
}
|
|
5567
5567
|
|
|
5568
|
-
// ../../node_modules/.pnpm/@t3-oss+env-core@0.13.8_arktype@2.1.27_typescript@5.9.3_zod@4.1.
|
|
5568
|
+
// ../../node_modules/.pnpm/@t3-oss+env-core@0.13.8_arktype@2.1.27_typescript@5.9.3_zod@4.1.13/node_modules/@t3-oss/env-core/dist/src-Bb3GbGAa.js
|
|
5569
5569
|
function ensureSynchronous(value, message) {
|
|
5570
5570
|
if (value instanceof Promise)
|
|
5571
5571
|
throw new Error(message);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tempest.games",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.81",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"safegen": "0.8.2",
|
|
46
46
|
"socket.io": "4.8.1",
|
|
47
47
|
"socket.io-client": "4.8.1",
|
|
48
|
-
"atom.io": "0.44.
|
|
48
|
+
"atom.io": "0.44.12",
|
|
49
49
|
"safedeposit": "0.1.2",
|
|
50
50
|
"treetrunks": "0.1.5"
|
|
51
51
|
},
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@types/bun": "npm:bun-types@1.3.3",
|
|
55
55
|
"@types/cors": "2.8.19",
|
|
56
56
|
"@types/node": "24.10.1",
|
|
57
|
-
"@types/react": "19.2.
|
|
57
|
+
"@types/react": "19.2.7",
|
|
58
58
|
"@types/react-dom": "19.2.3",
|
|
59
59
|
"@vitejs/plugin-react": "npm:@vitejs/plugin-react-swc@4.2.2",
|
|
60
60
|
"concurrently": "9.2.1",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"sass-embedded": "1.93.3",
|
|
70
70
|
"vite": "7.2.4",
|
|
71
71
|
"vitest": "4.0.13",
|
|
72
|
-
"flightdeck": "0.3.
|
|
72
|
+
"flightdeck": "0.3.10",
|
|
73
73
|
"varmint": "0.5.11"
|
|
74
74
|
},
|
|
75
75
|
"scripts": {
|