Skip to content

Commit

Permalink
Less strict node pnpm requirements (#127)
Browse files Browse the repository at this point in the history
* Update pnpm to ^8.10.5

* Make pnpm and node versions less strict

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
Siegrift and renovate[bot] authored Nov 21, 2023
1 parent 5af2da4 commit 7aea018
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8.10.2
version: 8.x
- name: Setup Node
uses: actions/setup-node@v4
with:
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8.10.2
version: 8.x
- name: Setup Node
uses: actions/setup-node@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "signed-api",
"version": "1.0.0",
"engines": {
"node": "^18.14.0",
"pnpm": "^8.10.2"
"node": "^18.x",
"pnpm": "^8.x"
},
"scripts": {
"build": "pnpm recursive run build",
Expand Down
4 changes: 2 additions & 2 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "api",
"version": "1.0.0",
"engines": {
"node": "^18.14.0",
"pnpm": "^8.10.2"
"node": "^18.x",
"pnpm": "^8.x"
},
"main": "index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "e2e",
"version": "1.0.0",
"engines": {
"node": "^18.14.0",
"pnpm": "^8.10.2"
"node": "^18.x",
"pnpm": "^8.x"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
Expand Down
4 changes: 2 additions & 2 deletions packages/pusher/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "pusher",
"version": "0.1.0",
"engines": {
"node": "^18.14.0",
"pnpm": "^8.10.2"
"node": "^18.x",
"pnpm": "^8.x"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
Expand Down
12 changes: 5 additions & 7 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,29 @@
"extends": ["config:base"],
"packageRules": [
{
"matchPackageNames": ["node"],
"enabled": false
},
{
"matchPackageNames": ["ethers"],
"matchPackageNames": ["ethers", "node"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["patch", "minor"],
"schedule": ["before 1am on the first day of the month"],
"groupName": "devDependencies (non-major)"
"groupName": "non-major-devDependencies"
},
{
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["patch", "minor"],
"schedule": ["before 1am on the first day of the month"],
"groupName": "dependencies (non-major)"
"groupName": "non-major-dependencies"
}
],
"rangeStrategy": "bump",
"lockFileMaintenance": {
"enabled": false
},
"reviewers": ["Siegrift"],
"minimumReleaseAge": "7 days",
"internalChecksFilter": "strict",
"dependencyDashboard": false
}

0 comments on commit 7aea018

Please sign in to comment.