Skip to content

Commit 126cee2

Browse files
committed
feat: upgrade to typescript 5
BREAKING CHANGE: require typescript 5
1 parent c57eb6a commit 126cee2

File tree

6 files changed

+4433
-10
lines changed

6 files changed

+4433
-10
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ jobs:
1010
package:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v2
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
15+
- run: corepack enable
1516
- run: yarn install
1617
- run: npx semantic-release
1718
env:

.github/workflows/validate.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ jobs:
99
validate:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
13-
- uses: actions/setup-node@v2
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
14+
- run: corepack enable
1415
- run: yarn install
1516
- run: yarn run validate

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
.idea
2+
.yarn
23
node_modules
3-
yarn.lock

.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@
2323
"validate": "tsc --project tsconfig.test.json"
2424
},
2525
"devDependencies": {
26-
"@semantic-release/changelog": "^6.0.1",
26+
"@semantic-release/changelog": "^6.0.3",
2727
"@semantic-release/git": "^10.0.1",
28-
"semantic-release": "^19.0.2",
29-
"typescript": "^4.5.5"
28+
"semantic-release": "^22.0.8",
29+
"typescript": "^5.3.2"
3030
},
3131
"peerDependencies": {
32-
"typescript": "^4.5.5"
33-
}
32+
"typescript": "^5.3.2"
33+
},
34+
"packageManager": "yarn@4.0.2"
3435
}

0 commit comments

Comments
 (0)