Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kritoke/darksimplicity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Rhone <matthew.rhone@outlook.com>2017-01-02 04:25:00 +0300
committerMatthew Rhone <matthew.rhone@outlook.com>2017-01-02 04:25:00 +0300
commit9b254334345ec3afb08a838c33a4e1cdfd6abef5 (patch)
treec1d574b70ddc2d08f4123a225322b4c1845a7b88
parent694d092da970e20afae9374ea79f5ff8a98daae4 (diff)
Tweak default gulp action to watch and run css task.
-rw-r--r--postcss/gulpfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/postcss/gulpfile.js b/postcss/gulpfile.js
index 2ce79fc..d825a15 100644
--- a/postcss/gulpfile.js
+++ b/postcss/gulpfile.js
@@ -16,7 +16,7 @@ gulp.task('css', function() {
.pipe(gulp.dest('dest'));
});
-gulp.task('default', ['css']);
+gulp.task('default', ['css', 'watch']);
gulp.task('watch', function() {
gulp.watch('src/main.css', ['css'])