-
-
Notifications
You must be signed in to change notification settings - Fork 759
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
Feature: App running with npm install
#1291
Feature: App running with npm install
#1291
Conversation
Our Pull Request Approval ProcessWe have these basic policies to make the approval process smoother for our volunteer team. Testing Your CodePlease make sure your code passes all tests. Our test code coverage system will fail if these conditions occur:
The process helps maintain the overall reliability of the code base and is a prerequisite for getting your PR approved. Assigned reviewers regularly review the PR queue and tend to focus on PRs that are passing. ReviewersWhen your PR has been assigned reviewers contact them to get your code reviewed and approved via:
Reviewing Your CodeYour reviewer(s) will have the following roles:
CONTRIBUTING.mdRead our CONTRIBUTING.md file. Most importantly:
Other
|
npm install
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #1291 +/- ##
===========================================
+ Coverage 96.99% 97.44% +0.45%
===========================================
Files 137 138 +1
Lines 3428 3683 +255
Branches 964 1076 +112
===========================================
+ Hits 3325 3589 +264
+ Misses 98 89 -9
Partials 5 5 ☔ View full report in Codecov by Sentry. |
can you share a video of how |
Was the |
No sir, it was not used in the code. The solution was to install |
Right now I am trying to solve peer depedency warnings. And I also need to change the INSTALLATION.md for the node version. |
Hey @aashimawadhwa can you check this PR now? |
@noman2002 @anwersayeed @aashimawadhwa please review |
src/screens/OrgPost/OrgPost.tsx
Outdated
value="searchText" | ||
// value="searchText" |
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.
Why this is commented ?
hey @noman2002 @rishav-jha-mech, Sorry for my late reply, I didn't receive the notification. |
hey @rishav-jha-mech @noman2002, I have fixed the issue and updated the INSTALLATION.md file. |
It maybe a eslint error, make sure you have eslint extension installed in your VS Code |
@git-init-priyanshu after all these changes are the packages getting installed without |
yes. Here is the video proof. https://drive.google.com/drive/folders/1j66OogD9dgTzPOLHCLYjN_KAP_CCj4sO |
@git-init-priyanshu I have seen the uploaded video, let me know if having node-sass module is causing any issue, if not then we will merge your PR |
Right now everything is working fine. But I found some sass files under |
@git-init-priyanshu please put node-sass back into package.json, and let us know if the npm install is working or not |
I reverted the changes. And |
58389f6
into
PalisadoesFoundation:develop
What kind of change does this PR introduce?
feature
Issue Number:
Fixes #1246
Did you add tests for your changes?
No
Snapshots/Videos:
Before:
After:
If relevant, did you update the documentation?
Yes
Summary
Right now, we cannot use
npm install
as it throws a bunch of errors, and can only be solved by using the--legacy-peer-deps
flag. This PR fixes those peer dependency issues.Does this PR introduce a breaking change?
No.
Have you read the contributing guide?
Yes