Skip to content

Commit 3a14fb6

Browse files
authored
chore: bump TypeScript to 6 and pnpm/action-setup to v6 (#94)
* chore: bump TypeScript to 6 and pnpm/action-setup to v6 * chore: release v2.1.3
1 parent 062a189 commit 3a14fb6

6 files changed

Lines changed: 20 additions & 15 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/checkout@v6
1414

1515
- name: Setup pnpm
16-
uses: pnpm/action-setup@v5
16+
uses: pnpm/action-setup@v6
1717

1818
- name: Setup Node.js
1919
uses: actions/setup-node@v6

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/checkout@v6
1414

1515
- name: Setup pnpm
16-
uses: pnpm/action-setup@v5
16+
uses: pnpm/action-setup@v6
1717

1818
- name: Setup Node.js
1919
uses: actions/setup-node@v6

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.1.3] - 2026-04-29
9+
10+
### Changed
11+
12+
- Bump typescript from 5.9.3 to 6.0.3
13+
- Bump pnpm/action-setup from 5 to 6
14+
- Bump pnpm (packageManager) from 10.26.2 to 10.33.2
15+
816
## [2.1.2] - 2026-04-29
917

1018
### Changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oxlint-plugin-complexity",
3-
"version": "2.1.2",
3+
"version": "2.1.3",
44
"description": "Cyclomatic and cognitive complexity rules for oxlint",
55
"keywords": [
66
"oxlint",
@@ -67,7 +67,7 @@
6767
"oxlint": "^1.62.0",
6868
"prettier": "3.8.3",
6969
"tsx": "^4.21.0",
70-
"typescript": "^5.9.3",
70+
"typescript": "^6.0.3",
7171
"vitest": "^4.1.5"
7272
},
7373
"peerDependencies": {
@@ -90,5 +90,5 @@
9090
"engines": {
9191
"node": ">=20.0.0"
9292
},
93-
"packageManager": "pnpm@10.26.2"
93+
"packageManager": "pnpm@10.33.2"
9494
}

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"module": "NodeNext",
55
"moduleResolution": "NodeNext",
66
"lib": ["ES2023"],
7+
"types": ["node"],
78
"outDir": "./dist",
89
"rootDir": "./src",
910
"strict": true,
@@ -14,11 +15,7 @@
1415
"declarationMap": true,
1516
"sourceMap": true,
1617
"resolveJsonModule": true,
17-
"isolatedModules": true,
18-
"paths": {
19-
"#src/*": ["./src/*"]
20-
},
21-
"baseUrl": "."
18+
"isolatedModules": true
2219
},
2320
"include": ["src/**/*"],
2421
"exclude": ["node_modules", "dist", "**/*.test.ts"]

0 commit comments

Comments
 (0)