Skip to content

Commit

Permalink
Updates devDependencies, removing node 16, version bump 2.0.5 (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
acolchado authored Mar 22, 2024
1 parent 4c81cd6 commit 026fe5a
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
46 changes: 23 additions & 23 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "spur-config",
"description": "Configuration framework to help manage complex application configurations in Node.js.",
"version": "2.0.4",
"version": "2.0.5",
"main": "./src/SpurConfig",
"author": {
"name": "Agustin Colchado",
Expand Down Expand Up @@ -38,8 +38,8 @@
"require-all": "3.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"eslint": "8.55.0",
"@types/jest": "29.5.12",
"eslint": "8.57.0",
"eslint-plugin-node": "11.1.0",
"jest": "29.7.0"
}
Expand Down
33 changes: 32 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"prConcurrentLimit": 5,
"extends": [
"config:js-app",
"group:monorepos",
"group:recommended",
"packages:eslint",
"packages:unitTest",
"packages:tslint"
],
"packageRules": [
{
"packagePatterns": ["spur-"],
"groupName": "Spur packages",
"description": "All packages related to spur node framework"
},
{
"packagePatterns": ["prettier", "-prettier"],
"groupName": "Prettier packages",
"description": "All packages related to the prettier plugin"
},
{
"packagePatterns": ["eslint", "eslint-"],
"groupName": "ESLint packages",
"description": "All packages related to the eslint plugin"
},
{
"packagePatterns": ["jest", "@types/jest", "nock", "jest-"],
"groupName": "Testing packages",
"description": "All packages related to the test suite"
}
]
}

0 comments on commit 026fe5a

Please sign in to comment.