Skip to content

Commit

Permalink
fix: update dependencies. Force release for removal of default in bas…
Browse files Browse the repository at this point in the history
…e-regression
  • Loading branch information
lpatiny committed May 16, 2024
1 parent d7175bf commit c3c00e3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@
},
"homepage": "https://github.com/mljs/regression-polynomial#readme",
"devDependencies": {
"@vitest/coverage-v8": "^1.2.2",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.56.0",
"eslint-config-cheminfo-typescript": "^12.1.0",
"ml-spectra-processing": "^12.10.1",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
"eslint-config-cheminfo-typescript": "^12.4.0",
"ml-spectra-processing": "^14.5.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"dependencies": {
"cheminfo-types": "^1.7.2",
"cheminfo-types": "^1.7.3",
"ml-matrix": "^6.11.0",
"ml-regression-base": "^3.0.0"
"ml-regression-base": "^4.0.0"
}
}
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { type NumberArray } from 'cheminfo-types';
import { Matrix, MatrixTransposeView, solve } from 'ml-matrix';
import BaseRegression, {
import {
BaseRegression,
checkArrayLength,
maybeToPrecision,
} from 'ml-regression-base';
Expand Down
5 changes: 2 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@
"compilerOptions": {
"allowJs": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "node",
"outDir": "lib",
"sourceMap": true,
"strict": true,
"target": "es2020"
},
"include": [
"./src/**/*"
]
"include": ["./src/**/*"]
}

0 comments on commit c3c00e3

Please sign in to comment.