Skip to content

Commit 38ba179

Browse files
authored
chore: typescript 5.7 (#1005)
1 parent 173a123 commit 38ba179

File tree

3 files changed

+26
-6
lines changed

3 files changed

+26
-6
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"scripts": {
1212
"lint": "nx run-many --parallel --target lint --all",
1313
"test": "nx run-many --parallel --target test --all",
14+
"check-types": "nx run-many --parallel --target check-types --all",
1415
"affected:lint": "nx affected --base=origin/main --head=HEAD --target=lint",
1516
"affected:test": "nx affected --base=origin/main --head=HEAD --target=test",
1617
"affected:e2e": "nx affected --base=origin/main --head=HEAD --target=e2e",
@@ -206,7 +207,7 @@
206207
"ts-jest": "29.1.0",
207208
"ts-node": "^10.9.2",
208209
"tslib": "^2.3.0",
209-
"typescript": "^5.3.3",
210+
"typescript": "^5.7.2",
210211
"url-loader": "^4.1.1",
211212
"validate-npm-package-name": "^5.0.0",
212213
"verdaccio": "^5.27.0",

sdk/nestjs/src/VariableValue.test.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ function getParamDecoratorFactory(decorator: () => ParameterDecorator) {
1515
}
1616

1717
describe('VariableValue', () => {
18-
let ctx: ExecutionContext
1918
let dvcClient: DevCycleClient
2019
let dvcUser: DevCycleUser
2120

@@ -40,7 +39,7 @@ describe('VariableValue', () => {
4039
const defaultValue = 'default value'
4140

4241
const factory = getParamDecoratorFactory(VariableValue)
43-
const value = factory({ key, default: defaultValue }, ctx)
42+
const value = factory({ key, default: defaultValue })
4443

4544
expect(dvcClient.variableValue).toBeCalledWith(
4645
dvcUser,

yarn.lock

+23-3
Original file line numberDiff line numberDiff line change
@@ -15437,7 +15437,7 @@ __metadata:
1543715437
ts-jest: 29.1.0
1543815438
ts-node: ^10.9.2
1543915439
tslib: ^2.3.0
15440-
typescript: ^5.3.3
15440+
typescript: ^5.7.2
1544115441
ua-parser-js: ^1.0.36
1544215442
url-loader: ^4.1.1
1544315443
uuid: ^8.3.2
@@ -31111,7 +31111,7 @@ __metadata:
3111131111
languageName: node
3111231112
linkType: hard
3111331113

31114-
"typescript@npm:^5.2.2, typescript@npm:^5.3.3":
31114+
"typescript@npm:^5.2.2":
3111531115
version: 5.3.3
3111631116
resolution: "typescript@npm:5.3.3"
3111731117
bin:
@@ -31121,6 +31121,16 @@ __metadata:
3112131121
languageName: node
3112231122
linkType: hard
3112331123

31124+
"typescript@npm:^5.7.2":
31125+
version: 5.7.2
31126+
resolution: "typescript@npm:5.7.2"
31127+
bin:
31128+
tsc: bin/tsc
31129+
tsserver: bin/tsserver
31130+
checksum: b55300c4cefee8ee380d14fa9359ccb41ff8b54c719f6bc49b424899d662a5ce62ece390ce769568c7f4d14af844085255e63788740084444eb12ef423b13433
31131+
languageName: node
31132+
linkType: hard
31133+
3112431134
"typescript@npm:~5.1.3":
3112531135
version: 5.1.6
3112631136
resolution: "typescript@npm:5.1.6"
@@ -31151,7 +31161,7 @@ __metadata:
3115131161
languageName: node
3115231162
linkType: hard
3115331163

31154-
"typescript@patch:typescript@^5.2.2#~builtin<compat/typescript>, typescript@patch:typescript@^5.3.3#~builtin<compat/typescript>":
31164+
"typescript@patch:typescript@^5.2.2#~builtin<compat/typescript>":
3115531165
version: 5.3.3
3115631166
resolution: "typescript@patch:typescript@npm%3A5.3.3#~builtin<compat/typescript>::version=5.3.3&hash=5da071"
3115731167
bin:
@@ -31161,6 +31171,16 @@ __metadata:
3116131171
languageName: node
3116231172
linkType: hard
3116331173

31174+
"typescript@patch:typescript@^5.7.2#~builtin<compat/typescript>":
31175+
version: 5.7.2
31176+
resolution: "typescript@patch:typescript@npm%3A5.7.2#~builtin<compat/typescript>::version=5.7.2&hash=5da071"
31177+
bin:
31178+
tsc: bin/tsc
31179+
tsserver: bin/tsserver
31180+
checksum: 803430c6da2ba73c25a21880d8d4f08a56d9d2444e6db2ea949ac4abceeece8e4a442b7b9b585db7d8a0b47ebda2060e45fe8ee8b8aca23e27ec1d4844987ee6
31181+
languageName: node
31182+
linkType: hard
31183+
3116431184
"typescript@patch:typescript@~5.1.3#~builtin<compat/typescript>":
3116531185
version: 5.1.6
3116631186
resolution: "typescript@patch:typescript@npm%3A5.1.6#~builtin<compat/typescript>::version=5.1.6&hash=5da071"

0 commit comments

Comments
 (0)