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

Commit 021b11e

Browse files
author
TED Vortex (Teodor Eugen Dutulescu)
authored
Merge pull request #37 from superleap/gils34-automate-esdoc-releases
fix(gulp): ensured setup task runs before npm publish
2 parents ea6bb27 + ad61592 commit 021b11e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

gulpfile.babel.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ function spawnp(proc, args = [], opts = { "stdio": `inherit` }) {
4949
});
5050
}
5151

52-
gulp.task(`changelog`, () => {
52+
gulp.task(`changelog`, [`setup`], () => {
5353
return standardChangelog({
5454
"preset": `angular`,
5555
"releaseCount": 0
@@ -191,6 +191,5 @@ gulp.task(`clean`, [`clean:docs`, `clean:manual`]);
191191
gulp.task(`test:install`, [`nsp`, `snyk`, `bithound`]);
192192
gulp.task(`test:publish`, [`test:install`, `package`]);
193193
gulp.task(`prepublish`, [`test:publish`]);
194-
gulp.task(`pretest`, [`setup`]);
195194
gulp.task(`test`, [`test:install`, `lint`]);
196195
gulp.task(`default`, [`test`]);

0 commit comments

Comments
 (0)