Skip to content

Commit

Permalink
feat!: drop Node 18 support
Browse files Browse the repository at this point in the history
and upgrade pinned devDeps
  • Loading branch information
AviVahl committed Jan 23, 2025
1 parent 88b2984 commit ae9bde3
Show file tree
Hide file tree
Showing 4 changed files with 220 additions and 33 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [22, 20, 18]
node-version: [22, 20]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
Expand Down
242 changes: 216 additions & 26 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
Expand Up @@ -20,7 +20,7 @@
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.10",
"@types/node": "18",
"@types/node": "20",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@types/sinon": "^17.0.3",
Expand All @@ -33,13 +33,13 @@
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-no-only-tests": "^3.3.0",
"mocha": "^11.1.0",
"mocha-web": "^1.0.2",
"mocha-web": "^2.0.1",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"promise-assist": "^2.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^5.0.8",
"rimraf": "^6.0.1",
"sass": "^1.83.4",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
Expand Down
3 changes: 0 additions & 3 deletions pleb.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,5 @@ export default {
{ name: "@types/chai-as-promised", reason: "esm-only" },
{ name: "sinon-chai", reason: "esm-only" },
{ name: "@types/sinon-chai", reason: "esm-only" },

{ name: "rimraf", reason: "drops node 18 support" },
{ name: "mocha-web", reason: "drops node 18 support" },
],
};

0 comments on commit ae9bde3

Please sign in to comment.