From f2c8a1cee3623bae125ee6730730f8fbc106ff2d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 7 Mar 2021 00:44:48 +0000 Subject: Bump husky from 4.3.8 to 5.1.3 Bumps [husky](https://github.com/typicode/husky) from 4.3.8 to 5.1.3. - [Release notes](https://github.com/typicode/husky/releases) - [Commits](https://github.com/typicode/husky/compare/v4.3.8...v5.1.3) Signed-off-by: dependabot[bot] --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index ece5a2d..67b4b94 100644 --- a/package.json +++ b/package.json @@ -70,7 +70,7 @@ "dotenv": "8.2.0", "eslint": "7.21.0", "eslint-plugin-react": "7.22.0", - "husky": "5.0.9", + "husky": "5.1.3", "jest": "26.6.3", "jest-environment-jsdom-fourteen": "1.0.1", "jest-resolve": "26.6.2", diff --git a/yarn.lock b/yarn.lock index 57029c6..a390631 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4928,10 +4928,10 @@ human-signals@^2.1.0: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== -husky@5.0.9: - version "5.0.9" - resolved "https://registry.yarnpkg.com/husky/-/husky-5.0.9.tgz#6d38706643d66ed395bcd4ee952d02e3f15eb3a3" - integrity sha512-0SjcaY21a+IRdx7p7r/X33Vc09UR2m8SbP8yfkhUX2/jAmwcz+GR7i9jXkp2pP3GfX23JhMkVP6SWwXB18uXtg== +husky@5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/husky/-/husky-5.1.3.tgz#1a0645a4fe3ffc006c4d0d8bd0bcb4c98787cc9d" + integrity sha512-fbNJ+Gz5wx2LIBtMweJNY1D7Uc8p1XERi5KNRMccwfQA+rXlxWNSdUxswo0gT8XqxywTIw7Ywm/F4v/O35RdMg== iconv-lite@0.4.24: version "0.4.24" -- cgit v1.2.3 From bad36a3bef51fb12dbb57f0e60535fb243711987 Mon Sep 17 00:00:00 2001 From: Hassan Abouelela <47495861+HassanAbouelela@users.noreply.github.com> Date: Sun, 7 Mar 2021 03:49:31 +0300 Subject: Removes Pre Commit Step Removes the husky install step, in favor of automatic install through the prepare script. Signed-off-by: Hassan Abouelela <47495861+HassanAbouelela@users.noreply.github.com> --- .config/husky/.gitignore | 2 +- README.md | 1 - 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 +_ diff --git a/README.md b/README.md index 0f42f95..8094419 100644 --- a/README.md +++ b/README.md @@ -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.
-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" -- cgit v1.2.3