Skip to content

Commit d3a23c9

Browse files
authored
Versions fix (#52)
1 parent 8905557 commit d3a23c9

13 files changed

Lines changed: 308 additions & 337 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ _pagefind/
3333
npm-debug.log*
3434
yarn-debug.log*
3535
yarn-error.log*
36+
pnpm-debug.log*
3637

3738
# Misc
3839
.DS_Store
3940
*.pem
41+
42+
**/tsconfig.tsbuildinfo

apps/backend/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"start": "bun src/index.ts",
88
"dev": "bun --watch src/index.ts",
99
"build": "rm -rf dist && tsc -b tsconfig.build.json",
10+
"check-types": "tsc --noEmit",
1011
"lint": "eslint .",
1112
"lint:fix": "eslint . --fix",
1213
"generate": "prisma generate",
@@ -27,7 +28,7 @@
2728
"license": "ISC",
2829
"dependencies": {
2930
"@prisma/client": "6.7.0",
30-
"@trpc/server": "11.0.0-rc.730",
31+
"@trpc/server": "11.0.4",
3132
"bcryptjs": "^3.0.0",
3233
"cors": "^2.8.5",
3334
"csv-parse": "^5.6.0",
@@ -65,7 +66,7 @@
6566
"supertest": "^7.0.0",
6667
"swagger-jsdoc": "^6.2.8",
6768
"swagger-ui-express": "^5.0.1",
68-
"typescript": "^5.8.3",
69+
"typescript": "5.7.3",
6970
"typescript-eslint": "^8.22.0",
7071
"vitest": "^3.0.5"
7172
}

apps/backend/tests/integration/api/lists/create-list.test.ts

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

apps/backend/tests/integration/api/subscribers/create-subscriber.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,6 @@ describe("[POST] /api/subscribers", () => {
235235
const {
236236
apiKey: { key: apiKey },
237237
orgId,
238-
user,
239238
} = await createUser()
240239

241240
if (!process.env.RESEND_API_KEY) {

apps/backend/tests/integration/helpers/setup.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { config } from "dotenv"
22
config({ path: ".env.test" })
3-
import resetDb from "./reset-db"
43
import { beforeEach } from "vitest"
54
import { execSync } from "child_process"
65

apps/docs/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"build": "next build --webpack",
88
"postbuild": "pagefind --site .next/server/app --output-path public/_pagefind",
99
"start": "next start",
10+
"check-types": "tsc --noEmit",
1011
"lint": "eslint .",
1112
"lint:fix": "eslint --fix ."
1213
},
@@ -29,6 +30,6 @@
2930
"postcss": "^8.5.1",
3031
"postcss-load-config": "^6.0.1",
3132
"tailwindcss": "^4.0.6",
32-
"typescript": "^5.8.3"
33+
"typescript": "5.7.3"
3334
}
3435
}

apps/landing-page/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@
66
"dev": "next dev --port 3002 --turbopack",
77
"build": "next build",
88
"start": "next start",
9+
"check-types": "tsc --noEmit",
910
"lint": "eslint .",
1011
"lint:fix": "eslint . --fix"
1112
},
1213
"dependencies": {
13-
"@repo/ui": "workspace:*",
1414
"@repo/shared": "workspace:*",
15+
"@repo/ui": "workspace:*",
1516
"lucide-react": "^0.474.0",
1617
"next": "16.1.1",
1718
"react": "19.2.3",
@@ -27,6 +28,6 @@
2728
"postcss": "^8.5.1",
2829
"tailwindcss": "^3.4.17",
2930
"tailwindcss-animate": "^1.0.7",
30-
"typescript": "^5.8.3"
31+
"typescript": "5.7.3"
3132
}
3233
}

apps/web/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"start": "vite preview",
88
"dev": "vite --port 3000",
9-
"build": "tsc -b && vite build",
9+
"build": "vite build",
1010
"check-types": "tsc -b --noEmit",
1111
"lint": "eslint .",
1212
"lint:fix": "eslint . --fix",
@@ -20,8 +20,8 @@
2020
"@tabler/icons-react": "^3.31.0",
2121
"@tanstack/react-query": "^5.75.2",
2222
"@tanstack/react-table": "^8.21.3",
23-
"@trpc/client": "11.0.0-rc.730",
24-
"@trpc/react-query": "11.0.0-rc.730",
23+
"@trpc/client": "11.0.4",
24+
"@trpc/react-query": "11.0.4",
2525
"date-fns": "^4.1.0",
2626
"dayjs": "^1.11.13",
2727
"js-cookie": "^3.0.5",
@@ -41,7 +41,7 @@
4141
},
4242
"devDependencies": {
4343
"@eslint/js": "^9.26.0",
44-
"@trpc/server": "11.0.0-rc.730",
44+
"@trpc/server": "11.0.4",
4545
"@types/js-cookie": "^3.0.6",
4646
"@types/react": "^19.1.2",
4747
"@types/react-dom": "^19.1.3",
@@ -57,7 +57,7 @@
5757
"postcss": "^8.5.3",
5858
"tailwindcss": "^3.4.17",
5959
"tailwindcss-animate": "^1.0.7",
60-
"typescript": "^5.8.3",
60+
"typescript": "5.7.3",
6161
"typescript-eslint": "^8.31.1",
6262
"vite": "^6.3.4",
6363
"vite-plugin-pwa": "^1.0.0"

package.json

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
2-
"version": "0.10.2",
2+
"version": "0.10.3",
33
"name": "letterspace",
44
"private": true,
55
"scripts": {
66
"build": "turbo build",
77
"dev": "turbo dev",
88
"lint": "turbo lint",
9+
"check-types": "turbo check-types",
910
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
1011
"knip": "knip"
1112
},
@@ -15,7 +16,7 @@
1516
"knip": "^5.77.1",
1617
"prettier": "^3.4.2",
1718
"turbo": "^2.3.4",
18-
"typescript": "5.8.3"
19+
"typescript": "5.7.3"
1920
},
2021
"packageManager": "pnpm@10.26.2",
2122
"engines": {
@@ -31,14 +32,18 @@
3132
"esbuild",
3233
"prisma",
3334
"sharp"
34-
],
35-
"overrides": {
36-
"@types/react": "19.2.7",
37-
"@types/react-dom": "19.2.3"
38-
}
35+
]
3936
},
4037
"resolutions": {
4138
"@types/react": "^19",
4239
"@types/react-dom": "^19"
43-
}
40+
},
41+
"overrides": {
42+
"@types/react": "19.2.7",
43+
"@types/react-dom": "19.2.3"
44+
},
45+
"workspaces": [
46+
"apps/*",
47+
"packages/*"
48+
]
4449
}

packages/eslint-config/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
"./next-js": "./next.js",
99
"./react-internal": "./react-internal.js"
1010
},
11+
"scripts": {
12+
"check-types": "tsc --noEmit"
13+
},
1114
"devDependencies": {
1215
"@eslint/js": "^9.19.0",
1316
"@next/eslint-plugin-next": "^15.1.6",
@@ -18,7 +21,7 @@
1821
"eslint-plugin-react-hooks": "^5.1.0",
1922
"eslint-plugin-turbo": "^2.3.4",
2023
"globals": "^15.14.0",
21-
"typescript": "^5.8.3",
24+
"typescript": "5.7.3",
2225
"typescript-eslint": "^8.22.0"
2326
}
2427
}

0 commit comments

Comments
 (0)