feat(grunt): better version handling

This commit is contained in:
Tunghsiao Liu
2015-08-12 18:51:00 +08:00
parent bea8e172b1
commit 666279696d

View File

@@ -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"
]