Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Krivega committed Mar 15, 2023
1 parent 4e5f3eb commit 2c3b9cc
Show file tree
Hide file tree
Showing 5 changed files with 1,569 additions and 1,913 deletions.
190 changes: 0 additions & 190 deletions jest.config.js

This file was deleted.

18 changes: 18 additions & 0 deletions jest.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
const config = {
// Automatically clear mock calls and instances between every test
clearMocks: true,


// The directory where Jest should output its coverage files
coverageDirectory: 'coverage',

// The paths to modules that run some code to configure or set up the testing environment before each test
setupFiles: ['./src/setupTests.ts'],

transform: {
'.(ts|tsx)': 'ts-jest',
},
};


export default config;
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,32 +41,32 @@
"sequent-promises": "^0.1.4"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/jest": "^29.1.2",
"@types/node": "^18.8.5",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jest": "^29.4.2",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.1",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "29.1.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"husky": "^8.0.3",
"jest": "29.5.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"promise-delay": "^2.1.0",
"rollup": "^2.64.0",
"rollup": "^3.19.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "0.31.1",
"rollup-plugin-typescript2": "0.34.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"main:src": "src/index.ts",
"standard-version": {
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js → rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import typescript from 'rollup-plugin-typescript2';
import commonjs from '@rollup/plugin-commonjs';
import { terser } from 'rollup-plugin-terser';
import pkg from './package.json';
import pkg from './package.json' assert { type: "json" };

const plugins = [
commonjs(),
Expand Down
Loading

0 comments on commit 2c3b9cc

Please sign in to comment.