@@ -47,7 +47,7 @@ gulp.task('clean', function() {
47
47
return del ([' build' ]);
48
48
});
49
49
50
- gulp .task (' scripts' , [ ' clean ' ], function () {
50
+ gulp .task (' scripts' , function () {
51
51
// Minify and copy all JavaScript (except vendor scripts)
52
52
// with sourcemaps all the way down
53
53
return gulp .src (paths .scripts )
@@ -60,7 +60,7 @@ gulp.task('scripts', ['clean'], function() {
60
60
});
61
61
62
62
// Copy all static images
63
- gulp .task (' images' , [ ' clean ' ], function () {
63
+ gulp .task (' images' , function () {
64
64
return gulp .src (paths .images )
65
65
// Pass in options to the task
66
66
.pipe (imagemin ({optimizationLevel: 5 }))
@@ -69,12 +69,13 @@ gulp.task('images', ['clean'], function() {
69
69
70
70
// Rerun the task when a file changes
71
71
gulp .task (' watch' , function () {
72
- gulp .watch (paths .scripts , [ ' scripts' ] );
73
- gulp .watch (paths .images , [ ' images' ] );
72
+ gulp .watch (paths .scripts , ' scripts' );
73
+ gulp .watch (paths .images , ' images' );
74
74
});
75
75
76
+ gulp .task (' all' , gulp .parallel (' watch' , ' scripts' , ' images' ));
76
77
// The default task (called when you run `gulp` from cli)
77
- gulp .task (' default' , [ ' watch ' , ' scripts ' , ' images ' ] );
78
+ gulp .task (' default' , gulp . series ( ' clean ' , ' all ' ) );
78
79
```
79
80
80
81
## Incremental Builds
0 commit comments