Skip to content

Commit

Permalink
chore!: require node 20
Browse files Browse the repository at this point in the history
This probably isn't required, but @sherifforg/types requires 20, and these depend on it.
  • Loading branch information
lishaduck committed Jul 12, 2024
1 parent 8d81baa commit a26c210
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/docs-website/docs/requirements/hard-requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ description: The bare minimum

# Hard requirements

- [Node >=16](https://nodejs.org/en/)
- [Node >=20](https://nodejs.org/en/)
- [ESLint >=8.38.0](https://eslint.org/)
- [Typescript >= 5.0.0](https://www.typescriptlang.org/)
2 changes: 1 addition & 1 deletion packages/eslint-config-sheriff/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
"typescript": ">=5.0.0"
},
"engines": {
"node": ">=16"
"node": ">=20.10.0"
},
"license": "MIT",
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-sheriff/tsup.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"splitting": false,
"sourcemap": false,
"clean": true,
"target": "node16",
"target": "node20",
"skipNodeModulesBundle": true,
"minify": true,
"replaceNodeEnv": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/sheriff-constants/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@
"typescript": "^5.5.3"
},
"engines": {
"node": ">=16"
"node": ">=20.10.0"
}
}
2 changes: 1 addition & 1 deletion packages/sheriff-constants/tsup.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"splitting": false,
"sourcemap": false,
"clean": true,
"target": "node16",
"target": "node20",
"skipNodeModulesBundle": true,
"minify": true,
"replaceNodeEnv": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/sheriff-types/tsup.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"splitting": false,
"sourcemap": false,
"clean": true,
"target": "node16",
"target": "node20",
"skipNodeModulesBundle": true,
"minify": true,
"replaceNodeEnv": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/sheriff-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
"typescript": "^5.5.3"
},
"engines": {
"node": ">=16"
"node": ">=20.10.0"
}
}

0 comments on commit a26c210

Please sign in to comment.