Skip to content

Commit aca92ff

Browse files
upgrade correctly to husky v9 (#463)
1 parent aa81ea6 commit aca92ff

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.husky/pre-commit

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npm run lint

.husky/pre-push

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npm run test:quiet

package.json

+2-7
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050
"watch": "mocha --reporter=min --watch --growl",
5151
"test:functional": "bash test/functional-test.sh",
5252
"test:coverage": "nyc mocha",
53-
"test:all": "npm run lint && npm test && npm run test:functional"
53+
"test:all": "npm run lint && npm test && npm run test:functional",
54+
"prepare": "husky"
5455
},
5556
"dependencies": {
5657
"adm-zip": "^0.5.10",
@@ -74,12 +75,6 @@
7475
"should": "^13.2.3",
7576
"sinon": "^19.0.2"
7677
},
77-
"husky": {
78-
"hooks": {
79-
"pre-commit": "npm run lint",
80-
"pre-push": "npm run test:quiet"
81-
}
82-
},
8378
"funding": {
8479
"type": "liberapay",
8580
"url": "https://liberapay.com/tldr-pages"

0 commit comments

Comments
 (0)