Skip to content

Commit 3c43bd5

Browse files
committed
4.3.4
1 parent 1e1b289 commit 3c43bd5

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "husky",
3-
"version": "4.3.3",
3+
"version": "4.3.4",
44
"description": "Prevents bad commit or push (git hooks, pre-commit/precommit, pre-push/prepush, post-merge/postmerge and all that stuff...)",
55
"bin": {
66
"husky-run": "./bin/run.js",
@@ -92,8 +92,16 @@
9292
"^.+\\.tsx?$": "ts-jest"
9393
},
9494
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
95-
"testPathIgnorePatterns": ["node_modules", "__env__.ts"],
96-
"moduleFileExtensions": ["ts", "js", "json", "node"]
95+
"testPathIgnorePatterns": [
96+
"node_modules",
97+
"__env__.ts"
98+
],
99+
"moduleFileExtensions": [
100+
"ts",
101+
"js",
102+
"json",
103+
"node"
104+
]
97105
},
98106
"collective": {
99107
"type": "opencollective",

src/installer/__tests__/__snapshots__/scripts.ts.snap

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ exports[`hookScript should match snapshot 1`] = `
44
"#!/bin/sh
55
# husky
66
7-
# Created by Husky v4.3.3 (https://github.com/typicode/husky#readme)
7+
# Created by Husky v4.3.4 (https://github.com/typicode/husky#readme)
88
# At: <locale date string>
99
# From: /home/typicode/projects/foo-package (https://github.com/foo/foo-package)
1010
@@ -13,7 +13,7 @@ exports[`hookScript should match snapshot 1`] = `
1313
`;
1414
1515
exports[`localScript should match snapshot 1`] = `
16-
"# Created by Husky v4.3.3 (https://github.com/typicode/husky#readme)
16+
"# Created by Husky v4.3.4 (https://github.com/typicode/husky#readme)
1717
# At: <locale date string>
1818
# From: /home/typicode/projects/foo-package (https://github.com/foo/foo-package)
1919
@@ -23,7 +23,7 @@ cd \\".\\"
2323
`;
2424
2525
exports[`mainScript should match snapshot 1`] = `
26-
"# Created by Husky v4.3.3 (https://github.com/typicode/husky#readme)
26+
"# Created by Husky v4.3.4 (https://github.com/typicode/husky#readme)
2727
# At: <locale date string>
2828
# From: /home/typicode/projects/foo-package (https://github.com/foo/foo-package)
2929
@@ -67,7 +67,7 @@ hookIsDefined () {
6767
.huskyrc.yml
6868
}
6969
70-
huskyVersion=\\"4.3.3\\"
70+
huskyVersion=\\"4.3.4\\"
7171
gitParams=\\"$*\\"
7272
hookName=\\"$(basename \\"$0\\")\\"
7373

0 commit comments

Comments
 (0)