Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
targos committed Nov 21, 2024
1 parent f026065 commit 889d503
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 17 deletions.
3 changes: 0 additions & 3 deletions .eslintrc.yml

This file was deleted.

3 changes: 3 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import cheminfo from 'eslint-config-cheminfo-typescript';

export default [...cheminfo];
5 changes: 0 additions & 5 deletions jest.config.js

This file was deleted.

15 changes: 7 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,19 @@
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types",
"test-only": "jest --coverage",
"test-only": "vitest run --coverage",
"build": "cheminfo-build",
"tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm",
"tsc-cjs": "tsc --project tsconfig.cjs.json",
"tsc-esm": "tsc --project tsconfig.esm.json"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@vitest/coverage-v8": "^2.1.5",
"cheminfo-build": "^1.2.0",
"eslint-config-cheminfo-typescript": "^12.2.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
"eslint-config-cheminfo-typescript": "^17.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
}
}
2 changes: 2 additions & 0 deletions src/__tests__/index.test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { describe, expect, it } from 'vitest';

import testLib, { value, incrementValue } from '../index.js';

describe('testing the module', () => {
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"outDir": "lib",
"sourceMap": true,
"strict": true,
"target": "es2020"
"target": "es2020",
"skipLibCheck": true
},
"include": ["./src/**/*"]
}

0 comments on commit 889d503

Please sign in to comment.