Skip to content

Commit ca48307

Browse files
chore: upgraded dependencies
1 parent bf9e2c4 commit ca48307

File tree

11 files changed

+409
-472
lines changed

11 files changed

+409
-472
lines changed

apps/client/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,28 @@
1616
"dependencies": {
1717
"@emotion/react": "^11.10.5",
1818
"@emotion/styled": "^11.10.5",
19-
"@mui/material": "^5.11.7",
19+
"@mui/material": "^5.11.8",
2020
"@tauri-apps/api": "^1.2.0",
21-
"@vitejs/plugin-react": "^3.0.1",
21+
"@vitejs/plugin-react": "^3.1.0",
2222
"grid-engine": "^2.25.1",
23-
"mobx": "^6.7.0",
23+
"mobx": "^6.8.0",
2424
"mobx-react-lite": "^3.4.0",
2525
"phaser": "^3.55.2",
2626
"react": "^18.2.0",
2727
"react-dom": "^18.2.0",
2828
"shared": "workspace:^1.0.0",
29-
"ts-pattern": "^4.1.3",
30-
"vite": "^4.0.4",
31-
"vitest": "^0.28.3"
29+
"ts-pattern": "^4.1.4",
30+
"vite": "^4.1.1",
31+
"vitest": "^0.28.4"
3232
},
3333
"devDependencies": {
3434
"@babel/core": "^7.20.12",
3535
"@tauri-apps/cli": "^1.2.3",
36-
"@types/react": "^18.0.27",
36+
"@types/react": "^18.0.28",
3737
"@types/react-dom": "^18.0.10",
3838
"config-eslint": "workspace:^1.0.0",
3939
"config-typescript": "workspace:^1.0.0",
40-
"eslint": "^8.33.0",
41-
"typescript": "^4.9.4"
40+
"eslint": "^8.34.0",
41+
"typescript": "^4.9.5"
4242
}
4343
}

apps/client/src-tauri/Cargo.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/client/src/ui/Chatbox.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ export const Chatbox = observer(() => {
5959
message: chatStore.input,
6060
});
6161

62-
chatStore.setInput('');
63-
6462
socketStore.send({
6563
type: 'message',
6664
name: characterStore.name,
6765
content: chatStore.input,
6866
});
67+
68+
chatStore.setInput('');
6969
};
7070

7171
return (

apps/client/src/ui/Game.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import { useStore } from '../store';
2121
import { isTauri } from '../utils/tauri';
2222
import { Chatbox } from './Chatbox';
2323
import { LoadingScreen } from './LoadingScreen';
24-
import { SocketDiv } from './SocketDiv';
2524

2625
export const Game = observer(() => {
2726
const [input, setInput] = useState('');
@@ -191,7 +190,6 @@ export const Game = observer(() => {
191190
>
192191
<Chatbox />
193192
{!sceneVisible ? <CircularProgress /> : <Box id="root-game" />}
194-
<SocketDiv />
195193
</Box>
196194
);
197195
});

apps/client/src/ui/SocketDiv.tsx

Lines changed: 0 additions & 12 deletions
This file was deleted.

apps/server/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,22 @@
1313
"license": "MIT",
1414
"dependencies": {
1515
"@fastify/websocket": "^7.1.2",
16-
"@prisma/client": "^4.9.0",
17-
"fastify": "^4.12.0",
18-
"prisma": "^4.9.0",
16+
"@prisma/client": "^4.10.1",
17+
"fastify": "^4.13.0",
18+
"prisma": "^4.10.1",
1919
"shared": "workspace:^1.0.0",
20-
"ts-pattern": "^4.1.3",
20+
"ts-pattern": "^4.1.4",
2121
"uuid": "^9.0.0",
2222
"ws": "^8.12.0"
2323
},
2424
"devDependencies": {
25-
"@types/node": "^18.11.18",
25+
"@types/node": "^18.13.0",
2626
"@types/uuid": "^9.0.0",
2727
"@types/ws": "^8.5.4",
2828
"config-eslint": "workspace:^1.0.0",
2929
"config-typescript": "workspace:^1.0.0",
30-
"eslint": "^8.33.0",
30+
"eslint": "^8.34.0",
3131
"ts-node-dev": "^2.0.0",
32-
"typescript": "^4.9.4"
32+
"typescript": "^4.9.5"
3333
}
3434
}

apps/website/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@
1313
"@emotion/react": "^11.10.5",
1414
"@emotion/styled": "^11.10.5",
1515
"@mui/icons-material": "^5.11.0",
16-
"@mui/material": "^5.11.7",
16+
"@mui/material": "^5.11.8",
1717
"next": "^13.1.6",
1818
"react": "^18.2.0",
1919
"react-dom": "^18.2.0",
2020
"shared": "workspace:^1.0.0"
2121
},
2222
"devDependencies": {
2323
"@babel/core": "^7.20.12",
24-
"@types/react": "^18.0.27",
24+
"@types/react": "^18.0.28",
2525
"@types/react-dom": "^18.0.10",
2626
"config-eslint": "workspace:^1.0.0",
2727
"config-typescript": "workspace:^1.0.0",
28-
"eslint": "^8.33.0",
29-
"typescript": "^4.9.4"
28+
"eslint": "^8.34.0",
29+
"typescript": "^4.9.5"
3030
}
3131
}

packages/config-eslint/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"clean": "rm -rf node_modules"
88
},
99
"devDependencies": {
10-
"@typescript-eslint/eslint-plugin": "^5.49.0",
11-
"@typescript-eslint/parser": "^5.49.0",
12-
"eslint": "^8.33.0",
10+
"@typescript-eslint/eslint-plugin": "^5.51.0",
11+
"@typescript-eslint/parser": "^5.51.0",
12+
"eslint": "^8.34.0",
1313
"eslint-config-airbnb": "^19.0.4",
1414
"eslint-config-airbnb-typescript": "^17.0.0",
1515
"eslint-config-next": "^13.1.6",
@@ -18,6 +18,6 @@
1818
"eslint-plugin-jsx-a11y": "^6.7.1",
1919
"eslint-plugin-react": "^7.32.2",
2020
"eslint-plugin-react-hooks": "^4.6.0",
21-
"typescript": "^4.9.4"
21+
"typescript": "^4.9.5"
2222
}
2323
}

packages/scripts/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"clean": "rm -rf .turbo && rm -rf node_modules"
99
},
1010
"devDependencies": {
11-
"@types/node": "^18.11.18",
11+
"@types/node": "^18.13.0",
1212
"config-eslint": "workspace:^1.0.0",
1313
"config-typescript": "workspace:^1.0.0",
14-
"typescript": "^4.9.4"
14+
"typescript": "^4.9.5"
1515
}
1616
}

packages/shared/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"devDependencies": {
1515
"config-eslint": "workspace:^1.0.0",
1616
"config-typescript": "workspace:^1.0.0",
17-
"typescript": "^4.9.4"
17+
"typescript": "^4.9.5"
1818
},
1919
"dependencies": {
20-
"vitest": "^0.28.3",
21-
"zod": "^3.20.2"
20+
"vitest": "^0.28.4",
21+
"zod": "^3.20.6"
2222
}
2323
}

0 commit comments

Comments
 (0)