-
Notifications
You must be signed in to change notification settings - Fork 77
Developer Guide
Greg Smith edited this page Apr 6, 2019
·
32 revisions
-
Clone this repository to your local machine
git clone https://github.com/SAP/fundamental-react.git
-
Navigate to the directory
cd fundamental-react
-
Install dependencies
npm install
-
Run in development mode
npm start
Open http://localhost:3000 to view it in the browser.
npm run test
npm run test:coverage
npm run lint
When authoring a change, create a pull request with the title beginning with one of the prefixes listed below:
-
fix:
- bug fixes in the distribution package code
- will increment the patch version
- will show up in the Bug Fixes section in the release notes
-
feat:
new features in the distribution package code -
docs:
any changes to the documentation pages/content (fixes or features) -
chore:
infrastructure/internal changes that don’t affect the distribution package code or the documentation pages/content
When merging a pull request, make sure the title of the merge commit starts with one of those prefixes. This is used by standard-version
to increment the package version and update the CHANGELOG.md
file and is also used to generate release notes when publishing releases.