Skip to content

Commit

Permalink
feat: Update build process to use standard-version
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelkaron committed Mar 17, 2017
1 parent 58068cd commit 6daf61f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{
"name": "grunt-semver",
"description": "Semantic versioning for grunt",
"version": "0.1.7-0",
"version": "0.1.7",
"homepage": "https://github.com/mikaelkaron/grunt-semver",
"author": {
"name": "Mikael Karon",
"email": "[email protected]"
},
"scripts": {
"release": "standard-version",
"build": "gulp"
},
"repository": {
"type": "git",
"url": "https://github.com/mikaelkaron/grunt-semver"
Expand All @@ -29,7 +33,8 @@
},
"devDependencies": {
"grunt-contrib-jshint": "~0.6.0",
"grunt": "~0.4.1"
"grunt": "~0.4.1",
"standard-version": "^4.0.0"
},
"peerDependencies": {
"grunt": ">=0.4.0"
Expand Down

1 comment on commit 6daf61f

@patrick-motard
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting, I'd never heard of standard-version. Going to look into it. Auto generating a changelog off of commits to master is next on my bucket list.

Please sign in to comment.