in Gruntfile.js [18:43]
module.exports = function (grunt) {
// load all grunt tasks matching the ['grunt-*', '@*/grunt-*'] patterns
require('load-grunt-tasks')(grunt);
grunt.initConfig({
bump: {
options: {
files: ['package.json'],
updateConfigs: [],
commit: true,
commitMessage: 'Release FDS-%VERSION%',
commitFiles: ['-a'],
createTag: true,
tagName: 'FDS-%VERSION%',
tagMessage: 'Version FDS-%VERSION%',
push: true,
pushTo: 'origin',
gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d',
globalReplace: false,
prereleaseName: 'RC',
metadata: '',
regExp: false
}
}
});
};