Skip to content

Commit 0d5170e

Browse files
build(deps-dev): bump typescript from 5.8.3 to 5.9.2 (#753)
* build(deps-dev): bump typescript from 5.8.3 to 5.9.2 Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.8.3 to 5.9.2. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml) - [Commits](microsoft/TypeScript@v5.8.3...v5.9.2) --- updated-dependencies: - dependency-name: typescript dependency-version: 5.9.2 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Run lint:fix --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Loris Leiva <[email protected]>
1 parent 4d0d735 commit 0d5170e

File tree

3 files changed

+136
-136
lines changed

3 files changed

+136
-136
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"rimraf": "6.0.1",
3030
"turbo": "^2.5.5",
3131
"tsup": "^8.5.0",
32-
"typescript": "^5.8.3",
32+
"typescript": "^5.9.2",
3333
"vitest": "^3.2.4",
3434
"zx": "^8.8.0"
3535
},

packages/cli/src/parsedConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export type ParsedVisitorConfig<T extends readonly unknown[] = readonly unknown[
3030
}>;
3131

3232
export async function getParsedConfigFromCommand(cmd: Command): Promise<ParsedConfig> {
33-
return await getParsedConfig(cmd.optsWithGlobals() as ProgramOptions);
33+
return await getParsedConfig(cmd.optsWithGlobals());
3434
}
3535

3636
export async function getParsedConfig(options: Pick<ProgramOptions, 'config' | 'idl'>): Promise<ParsedConfig> {

0 commit comments

Comments
 (0)