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"]); |