forked from redux-form/redux-form
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
# Instructions for new contributors | ||
# Instructions for new contributors | ||
|
||
- Make a fork of https://github.com/erikras/redux-form | ||
- ? Install deps ? | ||
- Change the code to implement your feature/fix | ||
- ? Rebuild the app ? | ||
- pull request your branch into https://github.com/erikras/redux-form | ||
|
||
- Make a fork of https://github.com/erikras/redux-form and a branch off that fork | ||
- Install deps: `npm install` | ||
- Change the code to implement your feature/fix | ||
- When you're ready to commit run flow typechecker: `npm run test:flow` | ||
- And the full test suite: `npm run test` | ||
- And/or check the test coverage: `npm run test:cov` (this will check if you've added any new code that is not exercised by the test suite) | ||
- The pre-commit hooks should do a sanity-check build | ||
- Once committed, pull request your branch into https://github.com/erikras/redux-form |