Skip to content

Commit 4c10b89

Browse files
renovate[bot]renovate-bot72636c
authored
deps: typescript 4.4.2 (#497)
Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: Ryan Ling <[email protected]>
1 parent caeb867 commit 4c10b89

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

.changeset/silly-deers-draw.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'skuba': minor
3+
---
4+
5+
**deps:** TypeScript 4.4
6+
7+
This major release includes breaking changes. See the [announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-4-4/) for more information.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"ts-node": "^9.1.1",
9393
"ts-node-dev": "1.1.8",
9494
"tsconfig-seek": "1.0.2",
95-
"typescript": "4.3.5"
95+
"typescript": "4.4.2"
9696
},
9797
"peerDependencies": {
9898
"skuba-dive": "1"

src/cli/configure/processing/json.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { isObject } from '../../../utils/validation';
33
import { formatPrettier } from './prettier';
44

55
export const formatObject = (
6-
data: Record<PropertyKey, unknown>,
6+
data: Record<Exclude<PropertyKey, symbol>, unknown>,
77
filepath?: string,
88
) => {
99
const sortedData = Object.fromEntries(
@@ -22,7 +22,7 @@ export const formatObject = (
2222

2323
export const parseObject = (
2424
input: string | undefined,
25-
): Record<PropertyKey, unknown> | undefined => {
25+
): Record<Exclude<PropertyKey, symbol>, unknown> | undefined => {
2626
if (input === undefined) {
2727
return;
2828
}

yarn.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -1345,7 +1345,7 @@
13451345
source-map "^0.6.1"
13461346
write-file-atomic "^3.0.0"
13471347

1348-
"@jest/types@^27.0.6", "@jest/types@^27.1.0":
1348+
"@jest/types@^27.1.0":
13491349
version "27.1.0"
13501350
resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.1.0.tgz#674a40325eab23c857ebc0689e7e191a3c5b10cc"
13511351
integrity sha512-pRP5cLIzN7I7Vp6mHKRSaZD7YpBTK7hawx5si8trMKqk4+WOdK8NEKOTO2G8PKWD1HbKMVckVB6/XHh/olhf2g==
@@ -9579,10 +9579,10 @@ typedarray-to-buffer@^3.1.5:
95799579
dependencies:
95809580
is-typedarray "^1.0.0"
95819581

9582-
typescript@4.3.5:
9583-
version "4.3.5"
9584-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4"
9585-
integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==
9582+
typescript@4.4.2:
9583+
version "4.4.2"
9584+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.4.2.tgz#6d618640d430e3569a1dfb44f7d7e600ced3ee86"
9585+
integrity sha512-gzP+t5W4hdy4c+68bfcv0t400HVJMMd2+H9B7gae1nQlBzCqvrXX+6GL/b3GAgyTH966pzrZ70/fRjwAtZksSQ==
95869586

95879587
uglify-js@^3.1.4:
95889588
version "3.14.1"

0 commit comments

Comments
 (0)