Skip to content

Commit

Permalink
feat(grunt): better version handling
Browse files Browse the repository at this point in the history
  • Loading branch information
sparanoid committed Aug 12, 2015
1 parent bea8e17 commit 6662796
Showing 1 changed file with 25 additions and 14 deletions.
39 changes: 25 additions & 14 deletions Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,34 @@ module.exports = (grunt) ->
config:
pkg: grunt.file.readJSON("package.json")

release:
"npm-contributors":
options:
changelog: false,
file: "package.json"
npm: false
commitMessage: "chore: release <%= version %>"
tagName: "v<%= version %>"
tagMessage: "chore: tagging version <%= version %>"
afterBump: [
"changelog"
]
# Dev options
commit: false
tag: false
commitMessage: "feat(package): update contributors"

conventionalChangelog:
options:
changelogOpts:
preset: "angular"

dist:
src: "CHANGELOG.md"

bump:
options:
files: ["package.json"]
commitMessage: 'chore: release v%VERSION%'
commitFiles: ["-a"]
tagMessage: 'chore: create tag %VERSION%'
push: false
pushTags: false

grunt.registerTask "default", "Default task aka. build task", [
"changelog"
]

grunt.registerTask "default", "Default task aka. build task", (type) ->
grunt.task.run [
"npm-contributors"
"bump-only:#{type or 'patch'}"
"conventionalChangelog"
"bump-commit"
]

0 comments on commit 6662796

Please sign in to comment.