✨ Thanks for contributing to react-cashmere! ✨
As a contributor, here are the guidelines we would like you to follow:
Found a bug or have a new feature idea? Create an issue so we can track it and asign it priority.
Take a look at any open issues and see if you can help provide a solution.
All the react-cashmere repositories use Commitizen to help you create valid commit messages.
After staging your changes with git add, run npm run cm to start the interactive commit message CLI.
Each commit message consists of a header, a body and a footer. The header has a special format that includes a type, a scope and a subject:
<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>The header is mandatory and the scope of the header is optional.
The footer can contain a closing reference to an issue.
If the commit reverts a previous commit, it should begin with revert: , followed by the header of the reverted commit.
In the body it should say: This reverts commit <hash>., where the hash is the SHA of the commit being reverted.
The type must be one of the following:
| Type | Description |
|---|---|
| build | Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) |
| ci | Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) |
| docs | Documentation only changes |
| feat | A new feature |
| fix | A bug fix |
| perf | A code change that improves performance |
| refactor | A code change that neither fixes a bug nor adds a feature |
| style | Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) |
| test | Adding missing tests or correcting existing tests |
The subject contains succinct description of the change:
- use the imperative, present tense: "change" not "changed" nor "changes"
- don't capitalize first letter
- no dot (.) at the end
Just as in the subject, use the imperative, present tense: "change" not "changed" nor "changes". The body should include the motivation for the change and contrast this with previous behavior.
The footer should contain any information about Breaking Changes and is also the place to reference GitHub issues that this commit Closes.
Breaking Changes should start with the word BREAKING CHANGE: with a space or two newlines.
The rest of the commit message is then used for this.
fix(navbar): stop overflow of navigation itemsfeat(navbar): roll up navigation items into "more" when there is not enough room
Fix #42perf(navbar): Always use "more" when more then 3 navigation items are present
BREAKING CHANGE: limit the navigation items to two visible used for performance reasons.First you will need to create your own fork of react-cashmere repo. https://github.com/HealthCatalyst/react-cashmere
git clone <react-cashmere fork>
The following commands will run storybook locally at http://localhost:6006/ You can navigate to the component you want to modify and the page will reload when you make changes.
cd react-cashmere
npm install
npm start
The theme, providers and components live under ./src/* directroy.
The storybook documentation examples live under ./stories/* directory.
To create a new custom component you can add it here:
./src/components/<Component Name>
You will also need to create a new story to document your your component in
./stories/Components/<Component Name>.story.js
npm test
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
npm run build
Builds the app for production to the dist folder.