Skip to content

Commit 76a30f6

Browse files
committed
fix: npm repo link
1 parent d34d033 commit 76a30f6

File tree

4 files changed

+2583
-2373
lines changed

4 files changed

+2583
-2373
lines changed

.husky/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/pre-commit

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npm test

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
"lint": "yarn lint:eslint && yarn lint:tsc",
2727
"lint:eslint": "eslint . --ext .ts,.tsx --fix --max-warnings 0",
2828
"lint:tsc": "tsc -p ./tsconfig.json --noEmit",
29-
"test": "jest --collectCoverage"
29+
"test": "jest --collectCoverage",
30+
"prepare": "husky install"
3031
},
3132
"husky": {
3233
"hooks": {
@@ -78,7 +79,7 @@
7879
"eslint-plugin-react": "^7.21.5",
7980
"husky": "^5.2.0",
8081
"immer": "^9.0.1",
81-
"jest": "^24.8.0",
82+
"jest": "^26.6.3",
8283
"lint-staged": "^10.5.4",
8384
"lodash": "^4.17.15",
8485
"madge": "^4.0.1",
@@ -91,7 +92,7 @@
9192
"reflect-metadata": "^0.1.13",
9293
"rxjs": "^6.5.2",
9394
"shx": "^0.3.2",
94-
"ts-jest": "^24.0.2",
95+
"ts-jest": "^26.5.4",
9596
"tslib": "^2.1.0",
9697
"typescript": "^4.2.3"
9798
},

0 commit comments

Comments
 (0)