Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
josoriom committed Mar 18, 2024
1 parent 57ddba5 commit 2f5f353
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,20 @@
"testEnvironment": "node"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"eslint": "^8.1.0",
"eslint-config-cheminfo-typescript": "^10.1.1",
"jest": "^27.3.1",
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"eslint-config-cheminfo-typescript": "^12.2.0",
"jest": "^29.7.0",
"ml-dataset-iris": "^1.2.1",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
"prettier": "3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"dependencies": {
"jest-matcher-deep-close-to": "^3.0.2",
"ml-array-max": "^1.2.3",
"ml-array-mean": "^1.1.5",
"ml-array-min": "^1.2.2"
"ml-array-max": "^1.2.4",
"ml-array-mean": "^1.1.6",
"ml-array-min": "^1.2.3"
}
}
2 changes: 1 addition & 1 deletion src/utilities/getClassesPairs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Class } from '../types/Class';
*/

export function getClassesPairs(list: Class[]) {
const pairs: [Class, Class][] = [];
const pairs: Array<[Class, Class]> = [];
for (let i = 0; i < list.length - 1; i++) {
for (let j = i + 1; j < list.length; j++) {
pairs.push([list[i], list[j]]);
Expand Down

0 comments on commit 2f5f353

Please sign in to comment.