Skip to content

Commit

Permalink
Remove dead and broken code from gulpfile (#5794)
Browse files Browse the repository at this point in the history
In commit c216c0a, the task unittestWatch was removed. However, the watch task links to it, when executed with the test flag. As watching the unittest is possible with `gulp unittest --watch`, this code is not needed anymore and thus removed.
  • Loading branch information
HendrikRoehm authored and simonbrunel committed Nov 1, 2018
1 parent cb14217 commit 820d289
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions gulpfile.js
Expand Up @@ -233,9 +233,6 @@ function moduleSizesTask() {
}

function watchTask() {
if (util.env.test) {
return gulp.watch('./src/**', ['build', 'unittest', 'unittestWatch']);
}
return gulp.watch('./src/**', ['build']);
}

Expand Down

0 comments on commit 820d289

Please sign in to comment.