Some basic conventions for contributing to this project.
Please make sure that there aren't existing pull requests attempting to address the issue mentioned. Likewise, please check for issues related to update, as someone else may be working on the issue in a branch or fork.
Each commit message should include a type, a scope and a subject:
<type>(<scope>): <subject>
Lines should not exceed 100 characters. This allows the message to be easier to read on GitLab as well as in various git tools and produces a nice, neat commit log ie:
#271 feat(standard): add style config and refactor to match
#270 fix(config): only override publicPath when served by webpack
#269 feat(eslint-config-defaults): replace eslint-config-airbnb
#268 feat(config): allow user to configure webpack stats output
Must be one of the following:
The scope could be anything specifying place of the commit change. For example
security, api, etc...
The subject contains succinct description of the change:
Generate the changelog (by using conventional changelog CLI):
$ standard-changelog --first-release
Tag the version according to the semantic versioning rules and deploy the release:
$ git tag -a 1.0.0-beta.2
$ # Use the changelog header as tag comment.
$ git push --tags