Skip to content

Commit

Permalink
feat(deps): upgrade to latest
Browse files Browse the repository at this point in the history
feat(deps): upgrade to latest
  • Loading branch information
acrazing committed Jul 22, 2022
1 parent 6a31cb6 commit 894e26a
Show file tree
Hide file tree
Showing 4 changed files with 798 additions and 979 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ local-*
.idea/
.vscode/
dist/
coverage/
14 changes: 14 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*
* For a detailed explanation regarding each configuration property, visit:
* https://jestjs.io/docs/configuration
*/

module.exports = {
transform: { '^.+\\.tsx?$': 'ts-jest' },
collectCoverage: true,
coverageDirectory: 'coverage',
coverageProvider: 'v8',
cacheDirectory: '.cache/jest',
collectCoverageFrom: ['<rootDir>/src/**/*.{ts,tsx}', '!**/*.d.ts'],
testMatch: ['<rootDir>/src/**/*.spec.{ts,tsx}'],
};
54 changes: 13 additions & 41 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dpdm",
"version": "3.9.0",
"version": "3.10.0",
"description": "Analyze circular dependencies in your JavaScript/TypeScript projects.",
"keywords": [
"circular",
Expand Down Expand Up @@ -50,55 +50,27 @@
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"@types/jest": "^28.1.6",
"husky": "^8.0.1",
"jest": "^28.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rollup": "^2.70.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0"
"rollup": "^2.77.0",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1"
},
"dependencies": {
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/yargs": "^17.0.10",
"chalk": "^4.1.2",
"fs-extra": "^10.0.1",
"glob": "^7.2.0",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"ora": "^5.4.1",
"tslib": "^2.3.1",
"typescript": "^4.6.3",
"yargs": "^17.4.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node",
"mjs"
],
"cacheDirectory": ".cache/jest",
"collectCoverage": false,
"collectCoverageFrom": [
"<rootDir>/src/**/*.{ts,tsx}",
"!**/*.d.ts"
],
"coverageDirectory": "temp/coverage",
"globals": {
"__DEV__": true,
"ENV": {}
},
"testMatch": [
"<rootDir>/src/**/*.spec.{ts,tsx}"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"yargs": "^17.5.1"
},
"prettier": {
"printWidth": 80,
Expand Down
Loading

0 comments on commit 894e26a

Please sign in to comment.