30 lines
841 B
YAML
30 lines
841 B
YAML
|
_default:
|
||
|
|
||
|
# VCS CONFIG
|
||
|
vcs: git
|
||
|
|
||
|
# PREREQUISITES
|
||
|
# Actions executed before any questions get asked to the user.
|
||
|
# Custom action can be added by provided a relative path the the php script. Example:
|
||
|
# - relative/path/to/your-own-sript.php
|
||
|
prerequisites:
|
||
|
- working-copy-check
|
||
|
- display-last-changes
|
||
|
|
||
|
pre-release-actions:
|
||
|
update-version-class:
|
||
|
class: 'package.json'
|
||
|
pattern: '"version": "%version%"'
|
||
|
vcs-commit:
|
||
|
commit-message: '%version%'
|
||
|
|
||
|
version-generator: semantic
|
||
|
version-persister:
|
||
|
vcs-tag:
|
||
|
tag-prefix: 'v'
|
||
|
post-release-actions:
|
||
|
vcs-publish: # Publish the release to the VCS
|
||
|
ask-confirmation: true
|
||
|
command:
|
||
|
cmd: 'npm publish'
|
||
|
live-output: true
|