react-toolbox/.bumpedrc

30 lines
710 B
Plaintext
Raw Normal View History

2015-11-03 01:48:32 +03:00
files: [
'package.json'
]
plugins:
prerelease:
'Linting config files':
plugin: 'bumped-finepack'
'Linting projects files':
plugin: 'bumped-terminal'
command: 'npm run lint'
'Preparing build':
plugin: 'bumped-terminal'
command: 'npm run prepublish'
postrelease:
2015-11-11 23:58:28 +03:00
'Commiting new version':
plugin: 'bumped-terminal'
command: 'git add package.json && git commit package.json -m "$newVersion release" && git push origin master'
'Publishing tag at Github':
2015-11-03 14:51:31 +03:00
plugin: 'bumped-terminal'
command: 'git tag $newVersion && git push origin $newVersion'
2015-11-03 14:51:31 +03:00
'Publishing at NPM':
plugin: 'bumped-terminal'
command: 'npm publish'