-
Notifications
You must be signed in to change notification settings - Fork 230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: remove husky internal files that should never have been committed #1608
fix: remove husky internal files that should never have been committed #1608
Conversation
Thanks for the pull request, @bradenmacdonald! This repository is currently maintained by Once you've gone through the following steps feel free to tag them in a comment and let them know that your changes are ready for engineering review. 🔘 Get product approvalIf you haven't already, check this list to see if your contribution needs to go through the product review process.
🔘 Provide contextTo help your reviewers and other members of the community understand the purpose and larger context of your changes, feel free to add as much of the following information to the PR description as you can:
🔘 Get a green buildIf one or more checks are failing, continue working on your changes until this is no longer the case and your build turns green. Where can I find more information?If you'd like to get more details on all aspects of the review process for open source pull requests (OSPRs), check out the following resources: When can I expect my changes to be merged?Our goal is to get community contributions seen and reviewed as efficiently as possible. However, the amount of time that it takes to review and merge a PR can vary significantly based on factors such as:
💡 As a result it may take up to several weeks or months to complete a review and merge your PR. |
@@ -15,7 +15,7 @@ | |||
"i18n_extract": "fedx-scripts formatjs extract", | |||
"lint": "fedx-scripts eslint --ext .js --ext .jsx --ext .ts --ext .tsx .", | |||
"lint:fix": "fedx-scripts eslint --fix --ext .js --ext .jsx --ext .ts --ext .tsx .", | |||
"prepare": "husky install", | |||
"prepare": "husky", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The install
command has been deprecated and now you simply run npx husky
@openedx/committers-frontend-app-learning FYI on this PR - it will require you to run a command after pulling the changes, to avoid random |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1608 +/- ##
==========================================
+ Coverage 84.62% 84.65% +0.02%
==========================================
Files 332 332
Lines 5666 5683 +17
Branches 1397 1359 -38
==========================================
+ Hits 4795 4811 +16
- Misses 852 855 +3
+ Partials 19 17 -2 ☔ View full report in Codecov by Sentry. |
@bradenmacdonald I pulled your changes and am no longer getting the random husky file. However, I am still getting a husky deprecation warning.
While making your changes did you see this as well? |
fe7f501
to
7d4fbf6
Compare
@KristinAoki Thanks for catching that. For the first part, I have fixed it now, making that change as it says. For the second part, I saw a similar error. It happens if |
Thanks @KristinAoki ! |
The files in
.husky/_/
are supposed to be ignored by git, but two were somehow committed to this repo. This is causing problems like unrelated changes showing up in other PRs - see https://github.com/openedx/frontend-app-learning/pull/1567/files for an example.This PR fixes it by removing those files. Developers will have to manually run
npx husky
to re-create these files after pulling the latest changes.