-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Johnny Estilles
committed
May 12, 2015
1 parent
ed8e9df
commit 4cf9b6e
Showing
1 changed file
with
45 additions
and
45 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,47 +1,47 @@ | ||
//Defaults options | ||
//Defaults options | ||
module.exports = { | ||
branch_name : '', | ||
//[G]ithub [B]itbucket supported at the momment | ||
repo_url: '', | ||
version : '', | ||
file: 'CHANGELOG.md', | ||
app_name : 'My app - Changelog', | ||
grep_commits: '^fix|^feat|^docs|BREAKING', | ||
tag: null, | ||
debug: false, | ||
sections: [ | ||
{ | ||
title: 'Bug Fixes', | ||
grep: '^fix' | ||
}, | ||
{ | ||
title: 'Features', | ||
grep: '^feat' | ||
}, | ||
{ | ||
title: 'Documentation', | ||
grep: '^docs' | ||
}, | ||
{ | ||
title: 'Breaking changes', | ||
grep: 'BREAKING' | ||
}, | ||
{ | ||
title: 'Refactor', | ||
grep: '^refactor' | ||
}, | ||
{ | ||
title: 'Style', | ||
grep: '^style' | ||
}, | ||
{ | ||
title: 'Test', | ||
grep: '^test' | ||
}, | ||
{ | ||
title: 'Chore', | ||
grep: '^chore' | ||
} | ||
] | ||
branch_name : '', | ||
//[G]ithub [B]itbucket supported at the momment | ||
repo_url: '', | ||
version : '', | ||
file: 'CHANGELOG.md', | ||
app_name : 'My app - Changelog', | ||
grep_commits: '^fix|^feat|^docs|BREAKING', | ||
tag: null, | ||
debug: false, | ||
sections: [ | ||
{ | ||
title: 'Bug Fixes', | ||
grep: '^fix' | ||
}, | ||
{ | ||
title: 'Features', | ||
grep: '^feat' | ||
}, | ||
{ | ||
title: 'Documentation', | ||
grep: '^docs' | ||
}, | ||
{ | ||
title: 'Breaking changes', | ||
grep: 'BREAKING' | ||
}, | ||
{ | ||
title: 'Refactor', | ||
grep: '^refactor' | ||
}, | ||
{ | ||
title: 'Style', | ||
grep: '^style' | ||
}, | ||
{ | ||
title: 'Test', | ||
grep: '^test' | ||
}, | ||
{ | ||
title: 'Chore', | ||
grep: '^chore' | ||
} | ||
] | ||
|
||
}; | ||
}; |