Skip to content

Commit 1eb4039

Browse files
authored
chore!: minimum supported Node.js version is 18.12.0 (#225)
1 parent b8d5858 commit 1eb4039

File tree

13 files changed

+8714
-16956
lines changed

13 files changed

+8714
-16956
lines changed

.cspell.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
{
22
"version": "0.2",
33
"language": "en,en-gb",
4-
"words": ["commitlint", "concat", "Koppers", "sokra", "chunkhash", "memfs"],
4+
"words": [
5+
"commitlint",
6+
"concat",
7+
"Koppers",
8+
"sokra",
9+
"chunkhash",
10+
"memfs",
11+
"wagoid"
12+
],
513

614
"ignorePaths": [
715
"CHANGELOG.md",

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
strategy:
6161
matrix:
6262
os: [ubuntu-latest, windows-latest, macos-latest]
63-
node-version: [14.x, 16.x, 18.x, 20.x]
63+
node-version: [18.x, 20.x, 21.x]
6464

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

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ typings/
4545
# Optional eslint cache
4646
.eslintcache
4747

48+
# Optional cspell cache
49+
.cspellcache
50+
4851
# Optional REPL history
4952
.node_repl_history
5053

babel.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = (api) => {
1010
"@babel/preset-env",
1111
{
1212
targets: {
13-
node: "14.15.0",
13+
node: "18.12.0",
1414
},
1515
},
1616
],

lint-staged.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
module.exports = {
2-
"*": ["prettier --write --ignore-unknown", "cspell --no-must-find-files"],
2+
"*": [
3+
"prettier --cache --write --ignore-unknown",
4+
"cspell --cache --no-must-find-files",
5+
],
36
"*.js": ["eslint --cache --fix"],
47
};

0 commit comments

Comments
 (0)