| OLD | NEW | 
| (Empty) |  | 
 |   1 /*! | 
 |   2  * This file is part of adblockplus.org. | 
 |   3  * Copyright (C) 2017-present eyeo GmbH | 
 |   4  * | 
 |   5  * adblockplus.org is free software: you can redistribute it and/or modify | 
 |   6  * it under the terms of the GNU General Public License as published by | 
 |   7  * the Free Software Foundation, either version 3 of the License, or | 
 |   8  * (at your option) any later version. | 
 |   9  * | 
 |  10  * adblockplus.org is distributed in the hope that it will be useful, | 
 |  11  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 |  12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 |  13  * GNU General Public License for more details. | 
 |  14  * | 
 |  15  * You should have received a copy of the GNU General Public License | 
 |  16  * along with adblockplus.org.  If not, see <http://www.gnu.org/licenses/>. | 
 |  17  */ | 
 |  18  | 
 |  19 const gulp = require("gulp"); | 
 |  20 const gutil = require("gulp-util"); | 
 |  21 const sourcemaps = require("gulp-sourcemaps"); | 
 |  22 const rename = require("gulp-rename"); | 
 |  23 const sass = require("gulp-sass"); | 
 |  24 const postcss = require("gulp-postcss"); | 
 |  25 const scss = require("postcss-scss"); | 
 |  26 const autoprefixer = require("autoprefixer"); | 
 |  27  | 
 |  28 /****************************************************************************** | 
 |  29  * CSS | 
 |  30  ******************************************************************************/ | 
 |  31  | 
 |  32 gulp.task("css", function() { | 
 |  33   return gulp.src("./scss/main.scss") | 
 |  34     .pipe(sourcemaps.init()) | 
 |  35     .pipe(postcss([autoprefixer()], {syntax: scss}).on("error", gutil.log)) | 
 |  36     .pipe(sass({outputStyle: "compressed"}).on("error", gutil.log)) | 
 |  37     .pipe(rename("main.min.css")) | 
 |  38     .pipe(sourcemaps.write("./")) | 
 |  39     .pipe(gulp.dest("./css")); | 
 |  40 }); | 
 |  41  | 
 |  42 /****************************************************************************** | 
 |  43  * Watch | 
 |  44  ******************************************************************************/ | 
 |  45  | 
 |  46 gulp.task("watch", function() { | 
 |  47   gulp.watch("./scss/**/*.scss", ["css"]); | 
 |  48 }); | 
 |  49  | 
 |  50 /****************************************************************************** | 
 |  51  * Default | 
 |  52  ******************************************************************************/ | 
 |  53  | 
 |  54 gulp.task("default", ["css", "watch"]); | 
| OLD | NEW |