This commit is contained in:
peli 2020-06-22 15:47:22 -07:00
Родитель c5fa39437e
Коммит 7ea2020c75
2 изменённых файлов: 18 добавлений и 1 удалений

Просмотреть файл

@ -10,6 +10,13 @@ You can import the generated bundle to use the whole library generated by this s
import * from 'jacdac-ts'
```
## Creating release
The releases are automatically created by the build system based on the title of the commit:
* ``patch|fix:...`` patch
* ``minor:feature:...`` minor
### NPM scripts
- `npm t`: Run test suite

Просмотреть файл

@ -33,7 +33,17 @@
"release": {
"branches": ["master"],
"plugins": [
"@semantic-release/commit-analyzer",
["@semantic-release/commit-analyzer", {
"preset": "angular",
"releaseRules": [
{"type": "doc", "release": "patch"},
{"type": "fix", "release": "patch"},
{"type": "patch", "release": "patch"},
{"type": "minor", "release": "minor"},
{"type": "feature", "release": "minor"},
{"scope": "no-release", "release": false}
]
}],
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]