Skip to content

Commit

Permalink
ci(npm-test.yml): update node-version matrix to use LTS and latest ve…
Browse files Browse the repository at this point in the history
…rsions for better compatibility and coverage

feat(package.json): bump version to 2.5.1 and update devDependencies to latest versions for improved functionality and security
  • Loading branch information
ignlg committed Apr 10, 2024
1 parent b004680 commit 75669b4
Show file tree
Hide file tree
Showing 3 changed files with 1,172 additions and 1,120 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/npm-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [lts/*, latest]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "heap-js",
"version": "2.5.0",
"version": "2.5.1",
"description": "Efficient Binary heap (priority queue, binary tree) data structure for JavaScript / TypeScript. Includes JavaScript methods, Python's heapq module methods, and Java's PriorityQueue methods.",
"keywords": [
"heap",
Expand Down Expand Up @@ -69,32 +69,32 @@
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@types/benchmark": "^2.1.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.2",
"@typescript-eslint/eslint-plugin": "6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/benchmark": "^2.1.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"benchmark": "^2.1.4",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.3",
"lint-staged": "^14.0.1",
"eslint": "<9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"lodash.camelcase": "^4.3.0",
"prettier": "^3.0.2",
"prettier-eslint": "^15.0.1",
"rimraf": "^5.0.1",
"rollup": "^3.28.1",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"rimraf": "^5.0.5",
"rollup": "^4.14.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsc-watch": "^6.2.0",
"typedoc": "^0.25.13",
"typescript": "^5.4.4"
}
}

0 comments on commit 75669b4

Please sign in to comment.