commit 3a6776f0fa5d02e9b6203449cbecbab54d14369d parent b5424b4a7128a89b355fd627ace219abfdcf31cd Author: Tom Najdek <tom@doppnet.com> Date: Wed, 7 Jun 2017 17:32:01 +0100 Symlink task should not have clean task as pre-requisite Diffstat:
| M | gulpfile.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gulpfile.js b/gulpfile.js @@ -216,7 +216,7 @@ gulp.task('clean', () => { return del('build'); }); -gulp.task('symlink', ['clean'], () => { +gulp.task('symlink', () => { return getSymlinks(); });