itowns 2.40.0 → 2.40.1-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CONTRIBUTING.md +12 -1
- package/package.json +1 -1
package/CONTRIBUTING.md
CHANGED
|
@@ -60,7 +60,7 @@ question or suggestion.
|
|
|
60
60
|
|
|
61
61
|
We recommend the use of [iTowns discussions](https://github.com/iTowns/itowns/discussions)
|
|
62
62
|
for suggestions and questions.
|
|
63
|
-
However, there is another way of suggesting
|
|
63
|
+
However, there is another way of suggesting improvements or asking questions, which is
|
|
64
64
|
through iTowns mailing lists. There is a user mailing list and a developer mailing list.
|
|
65
65
|
|
|
66
66
|
You can subscribe to the mailing lists here:
|
|
@@ -104,6 +104,17 @@ Request.
|
|
|
104
104
|
[Testing guide](CODING.md#Testing).
|
|
105
105
|
* Write meaningful commit messages, by following the [Angular
|
|
106
106
|
convention](https://github.com/bcoe/conventional-changelog-standard/blob/master/convention.md).
|
|
107
|
+
Here is a comprehensive list of all commit types we support :
|
|
108
|
+
* `feat`, `features` or `feature` for some feature addition ;
|
|
109
|
+
* `fix` for a bug fix ;
|
|
110
|
+
* `perf` for some performance improvements;
|
|
111
|
+
* `revert` for an undo operation ;
|
|
112
|
+
* `doc` or `docs` for some changes on the documentation ;
|
|
113
|
+
* `refactor`, `refacto` or `refactoring` for some code refactoring ;
|
|
114
|
+
* `test` or `tests` for changes test related ;
|
|
115
|
+
* `chore`, `rename` or `workflow` for some work on package versions or
|
|
116
|
+
dependency updates, some file renaming or some changes on workflow files ;
|
|
117
|
+
* `example` or `examples` for changes on examples or addition of a new one.
|
|
107
118
|
* Keep the git history clean, rebase your work on the `master` branch of this
|
|
108
119
|
repository.
|
|
109
120
|
* If this is your first contribution to iTowns, add your name to
|