bump.js 359 B

123456789101112131415
  1. module.exports = {
  2. options: {
  3. files: ['package.json', 'bower.json'],
  4. updateConfigs: ['package'],
  5. commit: true,
  6. commitMessage: 'Release v%VERSION%',
  7. commitFiles: ['-a'],
  8. createTag: true,
  9. tagName: 'v%VERSION%',
  10. tagMessage: 'Version %VERSION%',
  11. push: true,
  12. pushTo: 'origin',
  13. gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d'
  14. }
  15. }