Skip to content

Commit caec753

Browse files
authored
chore(deps): bump typescript to 5.6.2 (#7494)
1 parent 9be6707 commit caec753

File tree

6 files changed

+801
-363
lines changed

6 files changed

+801
-363
lines changed

.github/renovate.json

+5
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,11 @@
8484
"description": "ESBuild 0.23 drops support for Windows 7 and 8, for now we don't want renovate to open PRs to bump them",
8585
"allowedVersions": "<=0.21",
8686
"matchPackageNames": ["esbuild"]
87+
},
88+
{
89+
"description": "Group TypeScript related deps in a single PR, as they often have to update together",
90+
"groupName": "typescript-tooling",
91+
"matchPackageNames": ["@sanity/pkg-utils", "@sanity/tsdoc", "typescript"]
8792
}
8893
],
8994
"ignorePaths": [

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,10 @@
110110
"@sanity/eslint-config-i18n": "1.0.0",
111111
"@sanity/eslint-config-studio": "^4.0.0",
112112
"@sanity/mutate": "^0.10.0",
113-
"@sanity/pkg-utils": "6.11.0",
113+
"@sanity/pkg-utils": "6.11.1",
114114
"@sanity/prettier-config": "^1.0.2",
115115
"@sanity/test": "0.0.1-alpha.1",
116-
"@sanity/tsdoc": "1.0.101",
116+
"@sanity/tsdoc": "1.0.103",
117117
"@sanity/ui": "^2.8.9",
118118
"@sanity/uuid": "^3.0.2",
119119
"@types/glob": "^7.2.0",
@@ -166,7 +166,7 @@
166166
"sanity": "workspace:*",
167167
"semver": "^7.3.5",
168168
"turbo": "^2.1.1",
169-
"typescript": "5.5.4",
169+
"typescript": "5.6.2",
170170
"vite": "^4.5.3",
171171
"vite-tsconfig-paths": "^4.3.2",
172172
"yargs": "^17.3.0"

packages/sanity/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,8 @@
273273
"@repo/package.config": "workspace:*",
274274
"@sanity/codegen": "3.57.3",
275275
"@sanity/generate-help-url": "^3.0.0",
276-
"@sanity/pkg-utils": "6.11.0",
277-
"@sanity/tsdoc": "1.0.101",
276+
"@sanity/pkg-utils": "6.11.1",
277+
"@sanity/tsdoc": "1.0.103",
278278
"@sanity/ui-workshop": "^1.2.11",
279279
"@sentry/types": "^8.12.0",
280280
"@testing-library/jest-dom": "^6.4.8",

packages/sanity/src/core/studio/copyPaste/utils.ts

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ const MIMETYPE_PLAINTEXT = 'text/plain'
2626
const SUPPORTS_SANITY_CLIPBOARD_MIMETYPE =
2727
typeof ClipboardItem !== 'undefined' &&
2828
'supports' in ClipboardItem &&
29-
// @ts-expect-error `ClipboardItem.supports` does not have types yet
3029
ClipboardItem.supports(MIMETYPE_SANITY_CLIPBOARD)
3130

3231
/**

perf/tests/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
"@types/node": "^18.15.3",
3232
"esbuild": "0.21.5",
3333
"ts-node": "^10.9.2",
34-
"typescript": "5.5.4"
34+
"typescript": "5.6.2"
3535
}
3636
}

0 commit comments

Comments
 (0)