Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: gulpfile.js

Issue 29361647: Issue 4607 - Default content styles (Closed)
Patch Set: Addressed comments (round 1) Created Nov. 8, 2016, 3:47 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « README.md ('k') | html/content.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"]);
« no previous file with comments | « README.md ('k') | html/content.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld