Skip to content

Commit e15ae14

Browse files
committed
refactor(tsfmt): fix setup for grunt-conventional-changelog
1 parent 07c24d0 commit e15ae14

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
<a name="0.4.2"></a>
2+
## 0.4.2 (2015-07-26)
3+
4+
5+
### Bug Fixes
6+
7+
* **tsfmt:** remove trailing white chars and add linefeed ([3843e40](https://github.com/vvakame/typescript-formatter/commit/3843e40))
8+
9+
10+
111
<a name"0.4.0"></a>
212
## 0.4.0 (2015-06-28)
313

Gruntfile.js

+21-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,27 @@ module.exports = function (grunt) {
101101
}
102102
},
103103
conventionalChangelog: {
104-
options: {}
104+
options: {
105+
changelogOpts: {
106+
// conventional-changelog options go here
107+
preset: "angular"
108+
},
109+
context: {
110+
// context goes here
111+
},
112+
gitRawCommitsOpts: {
113+
// git-raw-commits options go here
114+
},
115+
parserOpts: {
116+
// conventional-commits-parser options go here
117+
},
118+
writerOpts: {
119+
// conventional-changelog-writer options go here
120+
}
121+
},
122+
release: {
123+
src: "CHANGELOG.md"
124+
}
105125
}
106126
});
107127

0 commit comments

Comments
 (0)