1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-16 10:04:21 +02:00

feat(default-theme): add gulp default task

This commit is contained in:
Awilum
2020-02-19 23:50:46 +03:00
parent ab28f11af7
commit bfb220e8a0

View File

@@ -50,6 +50,16 @@ gulp.task("css", function() {
.pipe(gulp.dest("assets/dist/css/"));
});
/**
* Task: gulp default
*/
gulp.task('default', gulp.series(
'css'
));
/**
* Task: gulp watch
*/
gulp.task('watch', function () {
gulp.watch(["**/*.html", "../../**/*.md", "assets/src/"], gulp.series('css'));
});