You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
984 B

'use strict';
module.exports = function (grunt, options) {
return {
options: {
files: ['package.json', 'bower.json'],
updateConfigs: [],
commit: true,
commitMessage: 'Release v%VERSION%',
commitFiles: [
'CHANGELOG.md',
'package.json',
'bower.json',
'dist/<%= pkg.name %>.js',
'dist/<%= pkg.name %>.min.js',
'dist/<%= pkg.name %>.min.no-header.js',
'dist/<%= pkg.name %>.js',
'dist/<%= pkg.name %>_dev_mapped.js',
'dist/<%= pkg.name %>_dev_mapped.js.map',
'dist/architecture/**/*'
],
createTag: true,
tagName: 'v%VERSION%',
tagMessage: 'Version %VERSION%',
push: false,
pushTo: 'origin',
gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d'
}
};
};