Skip to content

Commit

Permalink
chore!: minimum supported Node.js version is 18.12.0 (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
snitin315 committed Jan 17, 2024
1 parent b8d5858 commit 1eb4039
Show file tree
Hide file tree
Showing 13 changed files with 8,714 additions and 16,956 deletions.
10 changes: 9 additions & 1 deletion .cspell.json
@@ -1,7 +1,15 @@
{
"version": "0.2",
"language": "en,en-gb",
"words": ["commitlint", "concat", "Koppers", "sokra", "chunkhash", "memfs"],
"words": [
"commitlint",
"concat",
"Koppers",
"sokra",
"chunkhash",
"memfs",
"wagoid"
],

"ignorePaths": [
"CHANGELOG.md",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Expand Up @@ -60,7 +60,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [14.x, 16.x, 18.x, 20.x]
node-version: [18.x, 20.x, 21.x]

runs-on: ${{ matrix.os }}

Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -45,6 +45,9 @@ typings/
# Optional eslint cache
.eslintcache

# Optional cspell cache
.cspellcache

# Optional REPL history
.node_repl_history

Expand Down
2 changes: 1 addition & 1 deletion babel.config.js
Expand Up @@ -10,7 +10,7 @@ module.exports = (api) => {
"@babel/preset-env",
{
targets: {
node: "14.15.0",
node: "18.12.0",
},
},
],
Expand Down
5 changes: 4 additions & 1 deletion lint-staged.config.js
@@ -1,4 +1,7 @@
module.exports = {
"*": ["prettier --write --ignore-unknown", "cspell --no-must-find-files"],
"*": [
"prettier --cache --write --ignore-unknown",
"cspell --cache --no-must-find-files",
],
"*.js": ["eslint --cache --fix"],
};

0 comments on commit 1eb4039

Please sign in to comment.