зеркало из https://github.com/microsoft/jacdac-ts.git
patch: added build options
This commit is contained in:
Родитель
c5fa39437e
Коммит
7ea2020c75
|
@ -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
|
||||
|
|
12
package.json
12
package.json
|
@ -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"
|
||||
]
|
||||
|
|
Загрузка…
Ссылка в новой задаче