Index: gulpfile.js |
=================================================================== |
--- a/gulpfile.js |
+++ b/gulpfile.js |
@@ -21,14 +21,9 @@ |
gulp.task("scss", function () |
{ |
return gulp.src("./scss/main.scss") |
.pipe(sass().on("error", sass.logError)) |
.pipe(gulp.dest("./static/css/")); |
}); |
-gulp.task("watch", function () |
juliandoucette
2017/09/01 10:30:58
Merge or rebase gone wrong?
ire
2017/09/05 06:55:51
Yup, fixed.
|
-{ |
- gulp.watch("./scss/**/*.scss", ["scss"]); |
-}); |
- |
-gulp.task("default", ["scss", "watch"]); |
+gulp.task("default", ["scss"]); |