Skip to content

Commit e365041

Browse files
chore(deps): update dependencies (#668)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Dan Adajian <danadajian@gmail.com> Co-authored-by: danadajian <danadajian@users.noreply.github.com>
1 parent 1ac3202 commit e365041

File tree

10 files changed

+1705
-2227
lines changed

10 files changed

+1705
-2227
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM oven/bun:1.2.22
1+
FROM oven/bun:1.3.1
22
WORKDIR /app
33

44
RUN useradd -ms /bin/sh admin

action/dist/main.js

Lines changed: 866 additions & 1598 deletions
Large diffs are not rendered by default.

action/dist/main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/package.json

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,28 @@
22
"name": "app",
33
"private": true,
44
"dependencies": {
5-
"@aws-sdk/client-s3": "3.893.0",
6-
"@aws-sdk/s3-request-presigner": "3.893.0",
7-
"@headlessui/react": "2.2.8",
8-
"@octokit/rest": "22.0.0",
9-
"@tanstack/react-query": "5.89.0",
10-
"@trpc/client": "11.5.1",
11-
"@trpc/react-query": "11.5.1",
12-
"@trpc/server": "11.5.1",
5+
"@aws-sdk/client-s3": "3.922.0",
6+
"@aws-sdk/s3-request-presigner": "3.922.0",
7+
"@headlessui/react": "2.2.9",
8+
"@octokit/rest": "22.0.1",
9+
"@tanstack/react-query": "5.90.6",
10+
"@trpc/client": "11.7.1",
11+
"@trpc/react-query": "11.7.1",
12+
"@trpc/server": "11.7.1",
1313
"@types/lodash": "4.17.20",
14-
"@types/react": "19.1.13",
15-
"@types/react-dom": "19.1.9",
14+
"@types/react": "19.2.2",
15+
"@types/react-dom": "19.2.2",
1616
"bun-plugin-tailwind": "0.0.15",
1717
"lodash": "4.17.21",
18-
"react": "19.1.1",
19-
"react-dom": "19.1.1",
20-
"react-router-dom": "7.9.1",
18+
"react": "19.2.0",
19+
"react-dom": "19.2.0",
20+
"react-router-dom": "7.9.5",
2121
"trpc-bun-adapter": "1.3.0",
22-
"tailwindcss": "4.1.13",
23-
"zod": "4.1.11"
22+
"tailwindcss": "4.1.16",
23+
"zod": "4.1.12"
2424
},
2525
"devDependencies": {
26-
"@testing-library/cypress": "10.1.0",
27-
"prettier-plugin-tailwindcss": "0.6.14",
28-
"vite": "7.1.6"
26+
"vite": "7.1.12"
2927
},
3028
"scripts": {
3129
"dev": "bun --hot ./server.ts",

app/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { serve } from 'bun';
44
import index from './public/index.html';
55

66
const server = serve({
7-
static: {
7+
routes: {
88
'/': index,
99
'/health': new Response('healthy', { status: 200 })
1010
},

bun.lock

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

comparadise-utils/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
"devDependencies": {
2323
"@types/pixelmatch": "5.2.6",
2424
"@types/pngjs": "6.0.5",
25-
"cypress": "15.2.0",
25+
"cypress": "15.5.0",
26+
"jest": "30.2.0",
2627
"tsup": "8.5.0"
2728
},
2829
"peerDependencies": {

docs/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
"start": "docusaurus start"
77
},
88
"devDependencies": {
9-
"@docusaurus/core": "3.8.1",
10-
"@docusaurus/plugin-content-docs": "3.8.1",
11-
"@docusaurus/preset-classic": "3.8.1",
12-
"@docusaurus/types": "3.8.1",
9+
"@docusaurus/core": "3.9.2",
10+
"@docusaurus/plugin-content-docs": "3.9.2",
11+
"@docusaurus/preset-classic": "3.9.2",
12+
"@docusaurus/types": "3.9.2",
1313
"@mdx-js/react": "3.1.1",
14-
"@types/react": "19.1.13",
14+
"@types/react": "19.2.2",
1515
"ajv": "8.17.1",
1616
"clsx": "2.1.1",
17-
"react": "19.1.1",
18-
"react-dom": "19.1.1"
17+
"react": "19.2.0",
18+
"react-dom": "19.2.0"
1919
}
2020
}

package.json

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
11
{
22
"name": "comparadise",
3-
"packageManager": "bun@1.2.4",
3+
"packageManager": "bun@1.3.1",
44
"devDependencies": {
5+
"@jest/globals": "30.2.0",
56
"@swc/jest": "0.2.39",
7+
"@testing-library/cypress": "10.1.0",
68
"@total-typescript/ts-reset": "0.6.1",
9+
"@types/bun": "1.3.1",
710
"@types/jest": "30.0.0",
8-
"bun-types": "1.2.22",
9-
"cypress": "15.2.0",
10-
"eslint": "9.36.0",
11+
"cypress": "15.5.0",
12+
"eslint": "9.39.0",
1113
"eslint-plugin-react": "7.37.5",
12-
"jest": "30.1.3",
14+
"jest": "30.2.0",
1315
"husky": "9.1.7",
1416
"nx": "22.0.2",
1517
"prettier": "3.6.2",
18+
"prettier-plugin-tailwindcss": "0.7.1",
19+
"shared": "workspace:*",
1620
"ts-node": "10.9.2",
17-
"typescript": "5.9.2",
18-
"typescript-eslint": "8.44.0"
21+
"typescript": "5.9.3",
22+
"typescript-eslint": "8.46.2"
1923
},
2024
"scripts": {
2125
"docker": "docker build . --tag comparadise && docker compose up -d",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"skipLibCheck": true,
1616
"strict": true,
1717
"target": "esnext",
18-
"types": ["bun-types", "jest", "cypress", "@testing-library/cypress"]
18+
"types": ["jest", "cypress", "@testing-library/cypress"]
1919
},
2020
"exclude": ["**/dist"]
2121
}

0 commit comments

Comments
 (0)