diff options
author | 2021-03-07 03:49:31 +0300 | |
---|---|---|
committer | 2021-03-07 03:49:31 +0300 | |
commit | bad36a3bef51fb12dbb57f0e60535fb243711987 (patch) | |
tree | 1501c993f5a07547ce1b28ba933f973011445ac4 | |
parent | Bump husky from 4.3.8 to 5.1.3 (diff) |
Removes Pre Commit Step
Removes the husky install step, in favor of automatic install through
the prepare script.
Signed-off-by: Hassan Abouelela <[email protected]>
-rw-r--r-- | .config/husky/.gitignore | 2 | ||||
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | package.json | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/.config/husky/.gitignore b/.config/husky/.gitignore index c9cdc63..31354ec 100644 --- a/.config/husky/.gitignore +++ b/.config/husky/.gitignore @@ -1 +1 @@ -_
\ No newline at end of file +_ @@ -12,7 +12,6 @@ and [webpack](https://webpack.js.org/) for building and development. A full setup guide is available on [Notion](https://www.notion.so/pythondiscord/Forms-6312360495ff45f487da5b1924184a2d), along with a troubleshooting guide.<br/> -Run `yarn install --dev` and `yarn run pre-commit` to setup your dev environment. ## React & Dependency Info ### Project Info diff --git a/package.json b/package.json index 67b4b94..b3209ed 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "build": "webpack", "test": "jest", "lint": "eslint --cache src/", - "pre-commit": "husky install .config/husky" + "prepare": "husky install .config/husky" }, "eslintConfig": { "extends": "react-app" |