Skip to content

Commit

Permalink
chore: upgrade node version
Browse files Browse the repository at this point in the history
  • Loading branch information
erictaylor committed Nov 4, 2024
1 parent ccefcbf commit 79fea8b
Show file tree
Hide file tree
Showing 5 changed files with 948 additions and 1,436 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 22.x
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 22.x
cache: yarn
- name: Install dependencies
run: yarn
run: yarn install --frozen-lockfile
- name: Build library
run: yarn build:prod
- name: Release
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 22.x
cache: yarn
- name: Install dependencies
run: yarn
run: yarn install --frozen-lockfile
- name: Build library
run: yarn build:prod
- name: Release
Expand Down
14 changes: 5 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
"micro-eth-signer": "0.7.2"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.3",
"@rollup/plugin-typescript": "11.1.6",
Expand All @@ -56,7 +56,7 @@
"@types/node": "20.11.10",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"commitizen": "4.3.0",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.4.2",
"eslint": "8.49.0",
Expand All @@ -76,10 +76,10 @@
},
"packageManager": "[email protected]",
"engines": {
"node": "^20"
"node": ">=20"
},
"volta": {
"node": "20.11.0",
"node": "22.11.0",
"yarn": "1.22.19"
},
"repository": {
Expand All @@ -101,10 +101,6 @@
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"http-cache-semantics": "4.1.1",
"json5": "2.2.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{ts,tsx}": "eslint --fix --max-warnings 0"
Expand Down
Loading

0 comments on commit 79fea8b

Please sign in to comment.