Skip to content
This repository has been archived by the owner on Nov 30, 2018. It is now read-only.

Commit

Permalink
feat(graphviz): added to bump routines
Browse files Browse the repository at this point in the history
  • Loading branch information
nmccready committed Jun 13, 2015
1 parent b6017de commit 69b317f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,13 @@ module.exports = (grunt) ->
# Run the example page by creating a local copy of angular-google-maps.js
# and running a webserver on port 3100 with livereload. Web page is opened
# automatically in the default browser.
grunt.registerTask 'graph', ['modules-graph', 'graphviz']

grunt.registerTask 'bump-@-preminor', ['changelog', 'bump-only:preminor', 'mappAll', 'bump-commit']
grunt.registerTask 'bump-@-prerelease', ['changelog','bump-only:prerelease', 'mappAll', 'bump-commit']
grunt.registerTask 'bump-@', ['changelog','bump-only', 'mappAll', 'bump-commit']
grunt.registerTask 'bump-@-minor', ['changelog','bump-only:minor', 'mappAll', 'bump-commit']
grunt.registerTask 'bump-@-major', ['changelog','bump-only:major', 'mappAll', 'bump-commit']
grunt.registerTask 'bump-@-preminor', ['changelog', 'bump-only:preminor', 'mappAll', 'graph', 'bump-commit']
grunt.registerTask 'bump-@-prerelease', ['changelog','bump-only:prerelease', 'mappAll', 'graph', 'bump-commit']
grunt.registerTask 'bump-@', ['changelog','bump-only', 'mappAll', 'graph', 'bump-commit']
grunt.registerTask 'bump-@-minor', ['changelog','bump-only:minor', 'mappAll', 'graph', 'bump-commit']
grunt.registerTask 'bump-@-major', ['changelog','bump-only:major', 'mappAll', 'graph', 'bump-commit']

exampleOpenTasks = []

Expand Down Expand Up @@ -129,6 +130,5 @@ module.exports = (grunt) ->

grunt.registerTask 'allExamples', allExamplesTaskToRun

grunt.registerTask 'graph', ['modules-graph', 'graphviz']

#to see all tasks available don't forget "grunt --help" !!!

0 comments on commit 69b317f

Please sign in to comment.