Skip to content

Commit

Permalink
Remove dead and broken code from gulpfile (chartjs#5794)
Browse files Browse the repository at this point in the history
In commit 3a4550c, 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 c513bd5 commit 4a5e5fb
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 4a5e5fb

Please sign in to comment.