@crowdin/app-project-module 0.30.2 → 0.30.3
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/.release-it.json +17 -0
- package/CONTRIBUTING.md +3 -0
- package/out/static/js/form.js +14 -14
- package/package.json +5 -5
package/.release-it.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"git": {
|
|
3
|
+
"push": true,
|
|
4
|
+
"commit": true,
|
|
5
|
+
"commitMessage": "chore: version ${version} [skip ci]",
|
|
6
|
+
"requireBranch": "master",
|
|
7
|
+
"tag": true
|
|
8
|
+
},
|
|
9
|
+
"github": {
|
|
10
|
+
"release": true,
|
|
11
|
+
"autoGenerate": true,
|
|
12
|
+
"releaseName": "${version}"
|
|
13
|
+
},
|
|
14
|
+
"npm": {
|
|
15
|
+
"publish": false
|
|
16
|
+
}
|
|
17
|
+
}
|
package/CONTRIBUTING.md
CHANGED
|
@@ -65,6 +65,9 @@ Before sending your pull requests, make sure you followed the list below:
|
|
|
65
65
|
- Ensure that there are unit tests for your code.
|
|
66
66
|
- Run unit tests.
|
|
67
67
|
|
|
68
|
+
> **Note**
|
|
69
|
+
> This project uses the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification for commit messages and PR titles.
|
|
70
|
+
|
|
68
71
|
##### Contributing to the docs
|
|
69
72
|
|
|
70
73
|
First of all, you need to install Python (v3). Then install dependencies:
|