-
-
Notifications
You must be signed in to change notification settings - Fork 245
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
Add section about development best practices to CONTRIBUTING #1337
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,36 @@ Our kanban board is public and available [here](https://github.com/orgs/vazco/pr | |
- Make sure you have added the necessary tests for your changes. Do not worry though, the Codecov bot will report it in the pull request. | ||
- Make sure your code passes _all_ tests: `npm test`. | ||
|
||
### Development | ||
|
||
For the best developer experience (DX) when developing locally it is recommended to start `build` and `test` in a `--watch` mode. | ||
|
||
In the root directory... | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This sounds a little strange. Maybe reword this to a direct command like "Run the commands below in the root directory." |
||
|
||
#### Running the build in watch mode | ||
|
||
```sh | ||
npm run build -- --watch | ||
``` | ||
|
||
#### Running the tests in watch mode | ||
|
||
```sh | ||
npm run test -- --watch | ||
``` | ||
|
||
kestarumper marked this conversation as resolved.
Show resolved
Hide resolved
|
||
#### Making changes to the documentation website (docusaurus) | ||
|
||
The local version of docs will use the locally built version of uniforms, so make sure to run the build in watch mode for live changes. | ||
|
||
Navigate to `/website` and run | ||
|
||
```sh | ||
npm start | ||
``` | ||
|
||
it will start the docusaurus in development mode supporting hot reload, so you should see the changes made to the website immediately. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this sentence should be capitalized. Also not sure if you need the comma after "hot reload" |
||
|
||
## _Work in progress_ PRs are also welcome | ||
|
||
If you can't or won't finish your PR, submit it anyway - maybe someone else will continue your work. If you don't know how to achieve your desired feature - file an issue for it - maybe someone else will implement it. |
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
a
is redundant in "a --watch mode". Should either be just "in --watch mode" or "in the --watch mode".In general you could simplify the start of this sentence but it's subjective so I'm okay with this version too. "For the best local developer experience"
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.
That's better!