UNPKG

catlogjs

Version:

Static site generator, translate human readable text format(such as markdown) into html, with a lot of other functions

27 lines (24 loc) 737 B
module.exports = function(grunt) { // Project configuration. grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), bump: { options: { files: ['package.json'], updateConfigs: [], commit: true, commitMessage: 'Release: v%VERSION%', commitFiles: ['package.json'], // '-a' for all files createTag: true, tagName: 'v%VERSION%', tagMessage: 'Version %VERSION%', push: false, //pushTo: 'upstream', //gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d' // options to use with '$ git describe' } } }); grunt.loadNpmTasks('grunt-bump'); // Default task(s). //grunt.registerTask('bump', ['grunt-bump']); };