Skip to content

Commit 7ec8287

Browse files
committed
chore: update typescript to 5.6.3
1 parent 4e7517c commit 7ec8287

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
"syncpack": "^11.2.1",
143143
"ts-node": "^10.0.0",
144144
"typedoc": "0.25.13",
145-
"typescript": "^4.6.3",
145+
"typescript": "^5.6.3",
146146
"xvfb-maybe": "^0.2.1",
147147
"yaml-hook": "^1.0.0"
148148
},

packages/api/core/src/api/make.ts

+1
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ export const listrMake = (
295295
});
296296
} catch (err) {
297297
if (err) {
298+
// eslint-disable-next-line @typescript-eslint/no-throw-literal
298299
throw err;
299300
} else {
300301
throw new Error(`An unknown error occurred while making for target: ${uniqMaker.name}`);

packages/api/core/src/util/forge-config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const proxify = <T extends ProxiedObject>(buildIdentifier: string | (() => strin
4444
const envValue = process.env[`${envPrefix}_${underscoreCase(name)}`];
4545
if (envValue) return envValue;
4646
}
47-
const value = Reflect.get(target, name, receiver);
47+
const value = Reflect.get(target, name, receiver) as BuildIdentifierConfig<T>;
4848

4949
if (value && typeof value === 'object' && value.__isMagicBuildIdentifierMap) {
5050
const identifier = typeof buildIdentifier === 'function' ? buildIdentifier() : buildIdentifier;

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -12600,10 +12600,10 @@ [email protected]:
1260012600
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.2.tgz#d1de67b6bef77c41823f822df8f0b3bcff60a5a0"
1260112601
integrity sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==
1260212602

12603-
typescript@^4.6.3:
12604-
version "4.6.3"
12605-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.6.3.tgz#eefeafa6afdd31d725584c67a0eaba80f6fc6c6c"
12606-
integrity sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==
12603+
typescript@^5.6.3:
12604+
version "5.6.3"
12605+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.3.tgz#5f3449e31c9d94febb17de03cc081dd56d81db5b"
12606+
integrity sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==
1260712607

1260812608
typescript@~4.2.4:
1260912609
version "4.2.4"

0 commit comments

Comments
 (0)