Skip to content

Commit

Permalink
Fix failing subsequent builds by upgrading to Gulp 4.x - Fixes #241 (#…
Browse files Browse the repository at this point in the history
…1113)

Signed-off-by: Kai Kreuzer <[email protected]>
  • Loading branch information
rogierhofboer authored and kaikreuzer committed Dec 12, 2021
1 parent b5f268d commit dd01bbe
Show file tree
Hide file tree
Showing 3 changed files with 1,807 additions and 1,690 deletions.
2 changes: 1 addition & 1 deletion bundles/org.openhab.ui.basic/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@
.pipe(gulp.dest("./src/main/resources/web"));
});

gulp.task("default", [ "css", "copyFontLibs", "eslint", "js" ]);
gulp.task("default", gulp.parallel("css", "copyFontLibs", gulp.series("eslint", "js")));
})();
Loading

0 comments on commit dd01bbe

Please sign in to comment.