diff --git a/Gruntfile.js b/Gruntfile.js index 008b2b4..d4921fb 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -22,10 +22,11 @@ module.exports = function(grunt) { var gi = grunt.config('gitinfo'); var lbc = gi.local.branch.current; - var tag = (gi.tag == '') ? 'no_tag' : gi.tag; + var tags = (gi.tag == '') ? 'no_tag' : gi.tag; + tags = tags.split('\n').join(','); var commitMsg = lbc.lastCommitMessage.slice(1, -1).split('\n')[0].replace(/"/g, '\\\"'); - var buildInfo = lbc.shortSHA + "/" + lbc.name + "/" + tag + + var buildInfo = lbc.shortSHA + "/" + lbc.name + "/" + tags + " (" + lbc.lastCommitTime.slice(1, -1) + "; \'" + commitMsg + "'"; return { 'build_info': buildInfo }; } diff --git a/package.json b/package.json index bdf172d..666ff0d 100644 --- a/package.json +++ b/package.json @@ -20,5 +20,8 @@ "grunt-contrib-concat": "~0.3.0", "grunt-gitinfo": "~0.1.7", "grunt-template": "~0.2.3" + }, + "scripts": { + "start": "grunt" } }