Skip to content

Commit d619454

Browse files
authored
build: upgrade to typescript 5.6 (#4345)
Only some apis added to types.
1 parent ac03a10 commit d619454

File tree

43 files changed

+417
-408
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+417
-408
lines changed

.github/workflows/migrate.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ jobs:
4949
- name: pnpm instal
5050
run: pnpm install --ignore-scripts
5151

52+
- name: generate prisma
53+
run: pnpm --filter=@webstudio-is/prisma-client generate
54+
5255
- name: execute migration
5356
run: pnpm --filter '@webstudio-is/prisma-client' run migrations migrate
5457
env:
@@ -102,6 +105,9 @@ jobs:
102105
- name: pnpm instal
103106
run: pnpm install --ignore-scripts
104107

108+
- name: generate prisma
109+
run: pnpm --filter=@webstudio-is/prisma-client generate
110+
105111
- name: get pending
106112
id: pending
107113
run: |

apps/builder/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,16 +128,16 @@
128128
"@testing-library/react-hooks": "^8.0.1",
129129
"@types/cookie": "^0.6.0",
130130
"@types/debug": "^4.1.12",
131-
"@types/dom-navigation": "^1.0.3",
131+
"@types/dom-navigation": "^1.0.4",
132132
"@types/react": "^18.2.70",
133133
"@types/react-dom": "^18.2.25",
134134
"@webstudio-is/jest-config": "workspace:*",
135135
"@webstudio-is/tsconfig": "workspace:*",
136136
"html-tags": "^4.0.0",
137137
"react-router-dom": "^6.26.2",
138138
"react-test-renderer": "18.3.0-canary-14898b6a9-20240318",
139-
"type-fest": "^4.24.0",
140-
"typescript": "5.5.2",
139+
"type-fest": "^4.26.1",
140+
"typescript": "5.6.3",
141141
"vite": "^5.4.8"
142142
},
143143
"sideEffects": false,

fixtures/ssg-netlify-by-project-id/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"@types/react-dom": "^18.2.25",
2727
"@vitejs/plugin-react": "^4.3.2",
2828
"prettier": "3.3.3",
29-
"typescript": "5.5.2",
29+
"typescript": "5.6.3",
3030
"vite": "^5.4.8",
3131
"webstudio": "workspace:*"
3232
},

fixtures/ssg/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"@types/react-dom": "^18.2.25",
2727
"@vitejs/plugin-react": "^4.3.2",
2828
"prettier": "3.3.3",
29-
"typescript": "5.5.2",
29+
"typescript": "5.6.3",
3030
"vite": "^5.4.8",
3131
"webstudio": "workspace:*"
3232
},

fixtures/webstudio-cloudflare-template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@remix-run/dev": "2.12.1",
5151
"@types/react": "^18.2.70",
5252
"@types/react-dom": "^18.2.25",
53-
"typescript": "5.5.2",
53+
"typescript": "5.6.3",
5454
"vite": "^5.4.8",
5555
"wrangler": "^3.63.2"
5656
}

fixtures/webstudio-custom-template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@remix-run/dev": "2.12.1",
3131
"@types/react": "^18.2.70",
3232
"@types/react-dom": "^18.2.25",
33-
"typescript": "5.5.2",
33+
"typescript": "5.6.3",
3434
"vite": "^5.4.8",
3535
"webstudio": "workspace:*"
3636
},

fixtures/webstudio-remix-netlify-edge-functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"@remix-run/dev": "2.12.1",
3333
"@types/react": "^18.2.70",
3434
"@types/react-dom": "^18.2.25",
35-
"typescript": "5.5.2",
35+
"typescript": "5.6.3",
3636
"vite": "^5.4.8",
3737
"webstudio": "workspace:*"
3838
},

fixtures/webstudio-remix-netlify-functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"@remix-run/dev": "2.12.1",
3232
"@types/react": "^18.2.70",
3333
"@types/react-dom": "^18.2.25",
34-
"typescript": "5.5.2",
34+
"typescript": "5.6.3",
3535
"vite": "^5.4.8",
3636
"webstudio": "workspace:*"
3737
},

fixtures/webstudio-remix-vercel/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@remix-run/dev": "2.12.1",
3030
"@types/react": "^18.2.70",
3131
"@types/react-dom": "^18.2.25",
32-
"typescript": "5.5.2",
32+
"typescript": "5.6.3",
3333
"vite": "^5.4.8",
3434
"webstudio": "workspace:*"
3535
},

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"@storybook/react-vite": "^8.3.5",
3737
"@types/css-tree": "^2.3.1",
3838
"@types/eslint__js": "^8.42.3",
39-
"@types/node": "^22.6.1",
39+
"@types/node": "^22.8.1",
4040
"@types/react": "^18.2.70",
4141
"esbuild": "^0.24.0",
4242
"eslint": "^9.13.0",
@@ -50,7 +50,7 @@
5050
"simple-git-hooks": "^2.11.1",
5151
"storybook": "^8.3.5",
5252
"tsx": "^4.19.1",
53-
"typescript": "5.5.2",
53+
"typescript": "5.6.3",
5454
"typescript-eslint": "^8.11.0",
5555
"vite": "^5.4.8"
5656
},

0 commit comments

Comments
 (0)