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

Unified Diff: gulpfile.js

Issue 29573851: Noissue - Moved website-defaults scss to static/scss (Closed) Base URL: https://hg.adblockplus.org/website-defaults
Patch Set: Created Oct. 11, 2017, 6:24 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 | « no previous file | static/scss/_base.scss » ('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
@@ -16,19 +16,19 @@
* along with website-defaults. If not, see <http://www.gnu.org/licenses/>.
*/
const gulp = require("gulp");
const sass = require("gulp-sass");
gulp.task("scss", function ()
{
- return gulp.src("./scss/main.scss")
+ return gulp.src("./static/scss/main.scss")
.pipe(sass().on("error", sass.logError))
.pipe(gulp.dest("./static/css/"));
});
gulp.task("watch", function ()
{
- gulp.watch("./scss/**/*.scss", ["scss"]);
+ gulp.watch("./static/scss/**/*.scss", ["scss"]);
});
gulp.task("default", ["scss", "watch"]);
« no previous file with comments | « no previous file | static/scss/_base.scss » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld