Skip to content

Commit 2a81e40

Browse files
committedAug 20, 2015
Fixed bug in gulpfile that was not properly processing sass files
1 parent 6bb43df commit 2a81e40

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed
 

‎gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ gulp.task('lint', function() {
2222
});
2323

2424
gulp.task('sass', function () {
25-
gulp.src('./sass/')
25+
gulp.src('./sass/*.scss')
2626
.pipe(plumber())
2727
.pipe(sass().on('error', sass.logError))
2828
.pipe(gulp.dest('./public/css'))

‎public/css/style.scss

-8
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.