Skip to content

Commit

Permalink
Make pnpm and node versions less strict
Browse files Browse the repository at this point in the history
  • Loading branch information
Siegrift committed Nov 21, 2023
1 parent a85f1c3 commit 6f95648
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.5"
"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.5"
"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.5"
"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.5"
"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 6f95648

Please sign in to comment.