Skip to content

Commit

Permalink
chore: update typescript to 5.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
erikian committed Oct 20, 2024
1 parent 4e7517c commit 7ec8287
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
"syncpack": "^11.2.1",
"ts-node": "^10.0.0",
"typedoc": "0.25.13",
"typescript": "^4.6.3",
"typescript": "^5.6.3",
"xvfb-maybe": "^0.2.1",
"yaml-hook": "^1.0.0"
},
Expand Down
1 change: 1 addition & 0 deletions packages/api/core/src/api/make.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@ export const listrMake = (
});
} catch (err) {
if (err) {
// eslint-disable-next-line @typescript-eslint/no-throw-literal
throw err;
} else {
throw new Error(`An unknown error occurred while making for target: ${uniqMaker.name}`);
Expand Down
2 changes: 1 addition & 1 deletion packages/api/core/src/util/forge-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const proxify = <T extends ProxiedObject>(buildIdentifier: string | (() => strin
const envValue = process.env[`${envPrefix}_${underscoreCase(name)}`];
if (envValue) return envValue;
}
const value = Reflect.get(target, name, receiver);
const value = Reflect.get(target, name, receiver) as BuildIdentifierConfig<T>;

if (value && typeof value === 'object' && value.__isMagicBuildIdentifierMap) {
const identifier = typeof buildIdentifier === 'function' ? buildIdentifier() : buildIdentifier;
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12600,10 +12600,10 @@ [email protected]:
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.2.tgz#d1de67b6bef77c41823f822df8f0b3bcff60a5a0"
integrity sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==

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

typescript@~4.2.4:
version "4.2.4"
Expand Down

0 comments on commit 7ec8287

Please sign in to comment.