Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
"keywords": [],
"license": "MIT",
"engines": {
"pnpm": "^10.26.2",
"node": ">=18.14.0"
},
"packageManager": "pnpm@9.15.9",
"packageManager": "pnpm@10.26.2",
"sideEffects": false,
"repository": {
"type": "git",
Expand Down Expand Up @@ -54,6 +55,7 @@
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.21",
"@types/node": "^24.10.1",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"jest": "^30.2.0",
"prettier": "^3.7.4",
Expand Down
59 changes: 49 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# See: https://pnpm.io/supply-chain-security
blockExoticSubdeps: true
minimumReleaseAge: 20160 # 14 days (keep in sync with Renovate config)
onlyBuiltDependencies:
- unrs-resolver
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm did you find that this project needs this script to run? FYI my approach has been to only enable scripts that we know we need.

34 changes: 2 additions & 32 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,5 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"packageRules": [
{
"matchPackageNames": ["node", "@octokit/rest"],
"enabled": false
},
{
"matchDepTypes": ["packageManager"],
"matchPackageNames": ["pnpm"],
"extends": ["schedule:quarterly"]
},
{
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["patch", "minor"],
"schedule": ["before 4am on Monday"],
"groupName": "non-major-dev-dependencies",
"automerge": true
},
{
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["patch", "minor"],
"schedule": ["before 4am on Monday"],
"groupName": "non-major-dependencies",
"automerge": true
}
],
"rangeStrategy": "bump",
"lockFileMaintenance": {
"enabled": false
},
"reviewers": ["Siegrift"],
"dependencyDashboard": false
"extends": ["local>api3dao/renovate-config"],
"reviewers": ["Siegrift"]
Copy link
Contributor

@mcoetzee mcoetzee Feb 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't have anything in the shared preset for @octokit/rest, so we will need to keep the package rule to disable it if we still need it disabled.

}