| 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("./")) |
| .pipe(gulp.dest("./css/")) |
| .pipe(connect.reload()); |
| }); |
| gulp.task("watch", function () |
| { |
| gulp.watch("html/*.html", ["html"]); |
| gulp.watch("scss/*.scss", ["scss"]); |