diff options
| author | Tobias Bosch | 2013-12-13 12:49:42 -0800 |
|---|---|---|
| committer | Tobias Bosch | 2013-12-13 12:51:13 -0800 |
| commit | 8c10db384727643265b1550543011d3193dfe557 (patch) | |
| tree | 836f583f1618e6dc1814afc6ee9265957402b74a /Gruntfile.js | |
| parent | 03088d60109582fa5e966ad8425b3de9d9152b6a (diff) | |
| download | angular.js-8c10db384727643265b1550543011d3193dfe557.tar.bz2 | |
chore(build): automate cutting a release, publishing to bower and to code.angular.js
Diffstat (limited to 'Gruntfile.js')
| -rw-r--r-- | Gruntfile.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 43c3ef97..a3b4e97b 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -4,6 +4,7 @@ var path = require('path'); module.exports = function(grunt) { //grunt plugins + grunt.loadNpmTasks('grunt-bump'); grunt.loadNpmTasks('grunt-contrib-clean'); grunt.loadNpmTasks('grunt-contrib-copy'); grunt.loadNpmTasks('grunt-contrib-connect'); @@ -268,6 +269,15 @@ module.exports = function(grunt) { write: { versionTXT: {file: 'build/version.txt', val: NG_VERSION.full}, versionJSON: {file: 'build/version.json', val: JSON.stringify(NG_VERSION)} + }, + + bump: { + options: { + files: ['package.json'], + commit: false, + createTag: false, + push: false + } } }); |
