Skip to content

Commit c280eb7

Browse files
chore(deps): update all non-major dependencies (#151)
* chore(deps): update all non-major dependencies * chore: fix formatting and dts output * chore: more fixing generated --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: dominikg <dominik.goepel@gmx.de>
1 parent 5139758 commit c280eb7

6 files changed

Lines changed: 274 additions & 409 deletions

File tree

docs/api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ export class TSConfckCache<T> {
296296
hasConfigPath(dir: string, configName?: string | undefined): boolean;
297297
/**
298298
* get cached closest tsconfig for files in dir
299-
* @throws if cached value is an error
299+
* @throws {unknown} if cached value is an error
300300
*/
301301
getConfigPath(dir: string, configName?: string | undefined): Promise<string | null> | string | null;
302302
/**
@@ -305,7 +305,7 @@ export class TSConfckCache<T> {
305305
hasParseResult(file: string): boolean;
306306
/**
307307
* get parsed tsconfig for file
308-
* @throws if cached value is an error
308+
* @throws {unknown} if cached value is an error
309309
*/
310310
getParseResult(file: string): Promise<T> | T;
311311
}

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,30 +22,30 @@
2222
"devDependencies": {
2323
"@changesets/cli": "^2.27.1",
2424
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
25-
"dts-buddy": "^0.4.1",
26-
"esbuild": "^0.19.8",
27-
"eslint": "^8.55.0",
25+
"dts-buddy": "^0.4.3",
26+
"esbuild": "^0.19.11",
27+
"eslint": "^8.56.0",
2828
"eslint-config-prettier": "^9.1.0",
2929
"eslint-plugin-markdown": "^3.0.1",
30-
"eslint-plugin-n": "^16.3.1",
31-
"eslint-plugin-prettier": "^5.0.1",
30+
"eslint-plugin-n": "^16.6.1",
31+
"eslint-plugin-prettier": "^5.1.2",
3232
"get-tsconfig": "^4.7.2",
3333
"husky": "^8.0.3",
34-
"lint-staged": "^15.1.0",
34+
"lint-staged": "^15.2.0",
3535
"npm-run-all": "^4.1.5",
36-
"prettier": "^3.1.0",
37-
"publint": "^0.2.6",
36+
"prettier": "^3.1.1",
37+
"publint": "^0.2.7",
3838
"tiny-glob": "^0.2.9",
3939
"tinybench": "^2.5.1",
4040
"tsconfck-2": "npm:tsconfck@^2.1.2",
4141
"tsconfck": "workspace:^",
42-
"vitest": "^1.0.1"
42+
"vitest": "^1.1.1"
4343
},
4444
"lint-staged": {
4545
"*.{js,md}": "eslint --cache --fix",
4646
"*": "prettier --cache --ignore-path .prettierignore --ignore-unknown --write"
4747
},
48-
"packageManager": "pnpm@8.11.0",
48+
"packageManager": "pnpm@8.14.0",
4949
"engines": {
5050
"node": "^18 || >=20"
5151
}

packages/tsconfck/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@
4949
},
5050
"devDependencies": {
5151
"@tsconfig/node18": "^18.2.2",
52-
"@vitest/coverage-v8": "^1.0.1",
53-
"esbuild": "^0.19.8",
52+
"@vitest/coverage-v8": "^1.1.1",
53+
"esbuild": "^0.19.11",
5454
"tiny-glob": "^0.2.9",
55-
"typescript": "^5.3.2",
56-
"vitest": "^1.0.1"
55+
"typescript": "^5.3.3",
56+
"vitest": "^1.1.1"
5757
},
5858
"engines": {
5959
"node": "^18 || >=20"

packages/tsconfck/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ declare module 'tsconfck' {
4343
hasConfigPath(dir: string, configName?: string | undefined): boolean;
4444
/**
4545
* get cached closest tsconfig for files in dir
46-
* @throws if cached value is an error
46+
* @throws {unknown} if cached value is an error
4747
*/
4848
getConfigPath(dir: string, configName?: string | undefined): Promise<string | null> | string | null;
4949
/**
@@ -52,7 +52,7 @@ declare module 'tsconfck' {
5252
hasParseResult(file: string): boolean;
5353
/**
5454
* get parsed tsconfig for file
55-
* @throws if cached value is an error
55+
* @throws {unknown} if cached value is an error
5656
*/
5757
getParseResult(file: string): Promise<T> | T;
5858

0 commit comments

Comments
 (0)