-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Update build process to use standard-version
- Loading branch information
1 parent
58068cd
commit 6daf61f
Showing
1 changed file
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
6daf61f
There was a problem hiding this comment.
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.