Thank you in advance for contributing your time and effort to this project! The instructions for contributing to the project are listed below.
yarn
yarn test
yarn affected:e2e
yarn build
Please follow these steps to simplify pull request reviews.
- Please rebase your branch against the current
master
branch. - Run the
Setup
command to make sure your development dependencies are up-to-date. - Please ensure the test suite passes before submitting a PR.
- If you've added new functionality, please include tests which validate its behavior.
- Make reference to possible issues on PR comment.
- Search through issues to see if a previous issue has already been reported and/or fixed.
- Provide a small reproduction.
- Please detail the affected browser(s) and operating system(s).
- Please be sure to state which version of Angular, node and npm you're using.
- We value keeping the API surface small and concise, which factors into whether new features are accepted.
- Submit an issue with the prefix
RFC:
with your feature request. - The feature will be discussed and considered.
- Once the PR is submitted, it will be reviewed and merged once approved.
We use conventional commit messages, and use the git commit messages to generate the changelog.
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.
Any line of the commit message cannot be longer than 100 characters! This allows the message to be easier to read on GitHub as well as in various git tools.
The footer should contain a closing reference to an issue if any.
docs: update changelog to beta.5
fix: update router component to fix issue with rendering
Must be one of the following:
- 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 a succinct description of the change:
- use the imperative, present tense: "change" not "changed" nor "changes"
- don't capitalize the 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.
Example:
feat: commit message
Closes #issuenumber
BREAKING CHANGES:
Describe breaking changes here
BEFORE:
Previous code example here
AFTER:
New code example here