Skip to content

Commit

Permalink
fix: allow node 21
Browse files Browse the repository at this point in the history
Signed-off-by: prisis <d.bannert@anolilab.de>
  • Loading branch information
prisis committed Nov 2, 2023
1 parent 0f5e8cb commit e95c9f7
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ jobs:
matrix:
os:
- "ubuntu-latest"
node_version: ["18", "20"]
node_version: ["18", "20", "21"]
include:
- os: "macos-latest"
node_version: "18"
node_version: "20"
- os: "windows-latest"
node_version: "18"
node_version: "20"
fail-fast: false

name: "Build & Unit Test: node-${{ matrix.node_version }}, ${{ matrix.os }}"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.52.0",
"eslint-plugin-mdx": "^2.2.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-editorconfig": "^4.0.3",
"eslint-plugin-mdx": "^2.2.0",
"eslint-plugin-vitest": "^0.3.8",
"eslint-plugin-vitest-globals": "^1.4.0",
"husky": "^8.0.3",
Expand All @@ -131,7 +131,7 @@
},
"packageManager": "pnpm@8.10.0",
"engines": {
"node": ">=18.17.* <=20.*"
"node": ">=18.* <=21.*"
},
"anolilab": {
"lint-staged-config": {
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-preset/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
}
},
"engines": {
"node": ">=18"
"node": ">=18.* <=21.*"
},
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion packages/browserslist-config-anolilab/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"vitest": "^0.34.6"
},
"engines": {
"node": ">=18"
"node": ">=18.* <=21.*"
},
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion packages/commitlint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"@commitlint/cli": "^17.6.5 || ^18.0.0"
},
"engines": {
"node": ">=18"
"node": ">=18.* <=21.*"
},
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@
}
},
"engines": {
"node": ">=18"
"node": ">=18.* <=21.*"
},
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion packages/lint-staged-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
}
},
"engines": {
"node": ">=18"
"node": ">=18.* <=21.*"
},
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion packages/package-json-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"vitest": "^0.34.6"
},
"engines": {
"node": ">=18"
"node": ">=18.* <=21.*"
},
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion packages/prettier-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"prettier": "2.x || 3.x"
},
"engines": {
"node": ">=18"
"node": ">=18.* <=21.*"
},
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion packages/stylelint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
"stylelint": "^15.11.0"
},
"engines": {
"node": ">=18"
"node": ">=18.* <=21.*"
},
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion packages/textlint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"textlint": "^13.3.2"
},
"engines": {
"node": ">=18"
"node": ">=18.* <=21.*"
},
"publishConfig": {
"access": "public",
Expand Down

0 comments on commit e95c9f7

Please sign in to comment.