We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cff581f commit bfab692Copy full SHA for bfab692
CONTRIBUTING.md
@@ -1,5 +1,26 @@
1
# Contributing to ng-redux
2
3
+## Developing ng-redux
4
+
5
+To run the project, simply `npm install`. Then, run tests via `npm run test` or build the entire project via `npm build`.
6
7
+## Commit convention
8
9
+ng-redux uses [`standard-version` convention](https://github.com/conventional-changelog/standard-version) which basically looks like this:
10
11
+```bash
12
+typeOfCommit(locationOfChanges): Commit message
13
+```
14
15
+Examples:
16
17
18
+fix(lib): Fix ng-redux library issue
19
+feat(build): Build system test watch
20
21
22
+And so on. The commits are then compiled into the changelog along with each release.
23
24
## Release process
25
26
For any contributors with release rights:
0 commit comments