Skip to content

Commit e1f3fa2

Browse files
author
Volodymyr
authored
Support gulp v4
At this moment all tasks gives error: "Task function must be specified".
1 parent 9cb4372 commit e1f3fa2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,6 @@ else {
114114
Gulp tasks
115115
========================================================================== */
116116

117-
// Default task. Run compilation for all themes
118-
gulp.task('default', ['less']);
119-
120117
// Less task
121118
gulp.task('less', function() {
122119
// Console info
@@ -221,3 +218,6 @@ gulp.task('clean', function (cb) {
221218
console.log('Please add your defined Theme ex: --luma'.red);
222219
}
223220
});
221+
222+
// Default task. Run compilation for all themes
223+
gulp.task('default', gulp.series('less'));

0 commit comments

Comments
 (0)