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

Unified Diff: gulpfile.js

Issue 29529767: Issue 5573 - Add a CSS reset to website-defaults (Closed) Base URL: https://hg.adblockplus.org/website-defaults
Patch Set: Reorder selectors, move reset styles from base to reset.scss Created Sept. 1, 2017, 8:56 a.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') | scss/_base.scss » ('j') | scss/_reset.scss » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"]);
« no previous file with comments | « README.md ('k') | scss/_base.scss » ('j') | scss/_reset.scss » ('J')

Powered by Google App Engine
This is Rietveld