Skip to content

Commit 98ca41b

Browse files
committed
chore: upgrade all deps to lates compat
1 parent 7f0409a commit 98ca41b

File tree

24 files changed

+2886
-2978
lines changed

24 files changed

+2886
-2978
lines changed

.changeset/cyan-carrots-doubt.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@apitree.cz/ts-config': patch
3+
---
4+
5+
Extend `app.json` with preferred React apps compiler options.

.changeset/flat-hounds-guess.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
'@apitree.cz/prettier-config': patch
3+
'@apitree.cz/testing-library': patch
4+
'@apitree.cz/typedoc-config': patch
5+
'@apitree.cz/eslint-config': patch
6+
'@apitree.cz/vitest-config': patch
7+
'@apitree.cz/ts-config': patch
8+
'@apitree.cz/ts-utils': patch
9+
'@apitree.cz/cli': patch
10+
---
11+
12+
Upgrade all dependencies to latest compatible.

.github/workflows/qa.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
strategy:
2323
matrix:
2424
node-version:
25-
- 22.3.0
25+
- 22.13.0
2626
pnpm-version:
27-
- 9.4.0
27+
- 10.0.0
2828
steps:
2929
- name: Checkout
3030
uses: actions/checkout@v4

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
- name: Setup pnpm
2727
uses: pnpm/action-setup@v4
2828
with:
29-
version: 9.4.0
29+
version: 10.0.0
3030
- name: Setup node.js
3131
uses: actions/setup-node@v4
3232
with:
3333
cache: pnpm
34-
node-version: 22.3.0
34+
node-version: 22.13.0
3535
- name: Cache
3636
uses: actions/cache@v4
3737
with:

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222
- name: Setup pnpm
2323
uses: pnpm/action-setup@v4
2424
with:
25-
version: 9.4.0
25+
version: 10.0.0
2626
- name: Setup node.js
2727
uses: actions/setup-node@v4
2828
with:
2929
cache: pnpm
30-
node-version: 22.3.0
30+
node-version: 22.13.0
3131
- name: Cache
3232
uses: actions/cache@v3
3333
with:

.npmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
auto-install-peers=false
22
enable-pre-post-scripts=true
3+
public-hoist-pattern[]=*eslint*
4+
public-hoist-pattern[]=*prettier*
35
strict-peer-deps=true

package.json

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"scripts": {
2020
"build": "turbo run build",
2121
"cleanup": "turbo run cleanup",
22-
"postcleanup": "rimraf .eslintcache tsconfig.tsbuildinfo node_modules",
22+
"postcleanup": "del .eslintcache tsconfig.tsbuildinfo node_modules",
2323
"fix": "turbo run fix",
2424
"postfix": "run-p postts postformat:fix postlint:fix",
2525
"format": "turbo run format --parallel",
@@ -40,28 +40,34 @@
4040
"ts": "turbo run ts",
4141
"postts": "tsc --project tsconfig.json"
4242
},
43-
"dependencies": {
43+
"devDependencies": {
4444
"@apitree.cz/cli": "workspace:*",
4545
"@apitree.cz/eslint-config": "workspace:*",
4646
"@apitree.cz/prettier-config": "workspace:*",
4747
"@apitree.cz/ts-config": "workspace:*",
48-
"@changesets/cli": "^2.27.7",
49-
"@commitlint/cli": "^19.3.0",
50-
"@commitlint/config-conventional": "^19.2.2",
51-
"@manypkg/cli": "0.21.4",
52-
"@types/node": "^22.0.0",
53-
"eslint": "^8.57.0",
54-
"husky": "^9.1.4",
55-
"is-ci": "^3.0.1",
56-
"lint-staged": "^15.2.7",
57-
"npm-run-all": "^4.1.5",
58-
"prettier": "^3.3.3",
59-
"rimraf": "^6.0.1",
60-
"turbo": "^2.0.9",
61-
"typescript": "^5.5.4"
48+
"@changesets/cli": "^2.27.11",
49+
"@commitlint/cli": "^19.6.1",
50+
"@commitlint/config-conventional": "^19.6.0",
51+
"@manypkg/cli": "0.23.0",
52+
"@types/node": "^22.10.5",
53+
"del-cli": "^6.0.0",
54+
"eslint": "^8.57.1",
55+
"husky": "^9.1.7",
56+
"is-ci": "^4.1.0",
57+
"lint-staged": "^15.3.0",
58+
"npm-run-all2": "^7.0.2",
59+
"prettier": "^3.4.2",
60+
"turbo": "^2.3.3",
61+
"typescript": "^5.7.3"
6262
},
63-
"packageManager": "pnpm@9.4.0",
63+
"packageManager": "pnpm@10.0.0",
6464
"engines": {
6565
"node": ">=22"
66+
},
67+
"pnpm": {
68+
"onlyBuiltDependencies": [
69+
"@swc/core",
70+
"esbuild"
71+
]
6672
}
6773
}

packages/cli/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"dist"
1919
],
2020
"scripts": {
21-
"prebuild": "rimraf dist tsconfig.build.tsbuildinfo",
21+
"prebuild": "del dist tsconfig.build.tsbuildinfo",
2222
"build": "tsc --build tsconfig.build.json",
23-
"cleanup": "rimraf .eslintcache .turbo tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo dist node_modules",
23+
"cleanup": "del .eslintcache .turbo tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo dist node_modules",
2424
"docs": "run-s docs:generate docs:format",
2525
"docs:format": "prettier --write \"./docs/**/*\"",
2626
"docs:generate": "typedoc",
@@ -34,17 +34,17 @@
3434
},
3535
"dependencies": {
3636
"@apitree.cz/ts-utils": "workspace:*",
37-
"@commander-js/extra-typings": "^12.1.0",
37+
"@commander-js/extra-typings": "^13.0.0",
3838
"@manypkg/get-packages": "^2.2.2",
39-
"commander": "^12.1.0",
39+
"commander": "^13.0.0",
4040
"deepmerge": "^4.3.1",
4141
"path-exists": "^5.0.0",
4242
"ts-toolbelt": "^9.6.0",
43-
"zod": "^3.23.8"
43+
"zod": "^3.24.1"
4444
},
4545
"devDependencies": {
4646
"@apitree.cz/typedoc-config": "workspace:*",
47-
"typedoc": "^0.26.5",
48-
"typescript": "^5.5.4"
47+
"typedoc": "^0.27.6",
48+
"typescript": "^5.7.3"
4949
}
5050
}

packages/cli/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from './commands/sync-project-references/types.js';
1+
export type * from './commands/sync-project-references/types.js';

packages/eslint-config/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// eslint-disable-next-line import/export,import/extensions
2-
export * from './dist/index.d.ts';
2+
export type * from './dist/index.d.ts';

0 commit comments

Comments
 (0)