Skip to content

Commit f415026

Browse files
committed
chore: update dependencies
1 parent 3fda2e7 commit f415026

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,29 +31,29 @@
3131
"cheminfo-types": "^1.8.1",
3232
"convert-to-jcamp": "^6.0.0",
3333
"is-any-array": "^2.0.1",
34-
"jcampconverter": "^11.0.5",
34+
"jcampconverter": "^12.0.3",
3535
"js-quantities": "^1.8.0",
36-
"ml-gsd": "^13.0.1",
36+
"ml-gsd": "^13.1.1",
3737
"ml-peak-shape-generator": "^4.2.0",
38-
"ml-signal-processing": "^2.0.0",
38+
"ml-signal-processing": "^2.1.0",
3939
"ml-spectra-fitting": "^5.0.1",
40-
"ml-spectra-processing": "^14.17.1",
41-
"react-plot": "^3.1.1",
40+
"ml-spectra-processing": "^14.18.1",
41+
"react-plot": "^3.1.2",
4242
"xy-parser": "^5.0.5"
4343
},
4444
"devDependencies": {
4545
"@types/js-quantities": "^1.6.6",
46-
"@types/node": "^24.5.1",
47-
"@vitest/coverage-v8": "^3.2.4",
46+
"@types/node": "^24.10.2",
47+
"@vitest/coverage-v8": "^4.0.15",
4848
"@zakodium/tsconfig": "^1.0.2",
4949
"cheminfo-build": "^1.3.1",
50-
"eslint": "^9.35.0",
51-
"eslint-config-cheminfo-typescript": "^20.0.0",
50+
"eslint": "^9.39.1",
51+
"eslint-config-cheminfo-typescript": "^21.0.1",
5252
"jest-matcher-deep-close-to": "^3.0.2",
53-
"prettier": "^3.6.2",
54-
"rimraf": "^6.0.1",
55-
"typescript": "^5.9.2",
56-
"vitest": "^3.2.4"
53+
"prettier": "^3.7.4",
54+
"rimraf": "^6.1.2",
55+
"typescript": "^5.9.3",
56+
"vitest": "^4.0.15"
5757
},
5858
"repository": {
5959
"type": "git",

src/util/__tests__/convertUnit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ test('getConversionFactor', () => {
1212
6,
1313
);
1414
expect(convertUnit(1, 'kg', 'ug')).toBeCloseTo(1e9, 6);
15-
expect(() => convertUnit(1, 'kg', 'ml')).toThrow(
15+
expect(() => convertUnit(1, 'kg', 'ml')).toThrowError(
1616
'Incompatible units: kg and ml',
1717
);
1818
expect(convertUnit(100, 'tempC', 'tempK')).toBeCloseTo(373.15, 6);

0 commit comments

Comments
 (0)