Skip to content
This repository was archived by the owner on Oct 28, 2020. It is now read-only.

Commit eb6765d

Browse files
author
TED Vortex (Teodor Eugen Dutulescu)
authored
Merge pull request #35 from superleap/gils33-conventional-changelog-upgrade
fix(changelog): removed conventional-changelog in favour of standard-…
2 parents 9d49a3e + e253e6b commit eb6765d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

gulpfile.babel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import Promise from 'bluebird';
22
import childProcess from 'child_process';
3-
import conventionalChangelog from 'conventional-changelog';
43
import del from 'del';
54
import fs from 'fs';
65
import gulp from 'gulp';
76
import gulpLoadPlugins from 'gulp-load-plugins';
87
import mkdirp from 'mkdirp';
98
import path from 'path';
109
import readPackage from 'read-package-json';
10+
import standardChangelog from 'standard-changelog';
1111

1212
let pkg = Promise.promisify(readPackage);
1313
let readFile = Promise.promisify(fs.readFile);
@@ -50,7 +50,7 @@ function spawnp(proc, args = [], opts = { "stdio": `inherit` }) {
5050
}
5151

5252
gulp.task(`changelog`, () => {
53-
return conventionalChangelog({
53+
return standardChangelog({
5454
"preset": `angular`,
5555
"releaseCount": 0
5656
})

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
"babel-register": "^6.11.6",
4545
"bithound": "https://github.com/vrtxf/cli.bithound.io/tarball/161a72d925c33876780bfebbfe2e4611cb99e7f0",
4646
"commitizen": "^2.8.2",
47-
"conventional-changelog": "^1.1.0",
4847
"cz-conventional-changelog": "^1.1.6",
4948
"del": "^2.2.1",
5049
"esdoc": "^0.4.7",
@@ -68,7 +67,8 @@
6867
"nsp": "^2.6.1",
6968
"read-package-json": "^2.0.4",
7069
"semantic-release": "^6.3.0",
71-
"snyk": "^1.17.4"
70+
"snyk": "^1.17.4",
71+
"standard-changelog": "0.0.1"
7272
},
7373
"config": {
7474
"commitizen": {

0 commit comments

Comments
 (0)