Index: gulpfile.js |
=================================================================== |
--- a/gulpfile.js |
+++ b/gulpfile.js |
@@ -35,17 +35,17 @@ |
.pipe(connect.reload()); |
}); |
gulp.task("scss", function () |
{ |
return gulp.src("./scss/main.scss") |
.pipe(sourcemaps.init()) |
.pipe(sass().on("error", sass.logError)) |
- .pipe(sourcemaps.write()) |
+ .pipe(sourcemaps.write("./")) |
juliandoucette
2016/11/08 15:52:01
Changed source maps plugin to write to external fi
|
.pipe(gulp.dest("./css/")) |
.pipe(connect.reload()); |
}); |
gulp.task("watch", function () |
{ |
gulp.watch("html/*.html", ["html"]); |
gulp.watch("scss/*.scss", ["scss"]); |