Skip to content

Commit 145a628

Browse files
committed
Merge pull request #48 from Yustynn/sassmap
Sourcemap Sass
2 parents 8b5e9ed + caa0d0b commit 145a628

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

generated/gulpfile.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ gulp.task('buildCSS', function () {
9393
.pipe(plumber({
9494
errorHandler: notify.onError('SASS processing failed! Check your gulp process.')
9595
}))
96+
.pipe(sourcemaps.init())
9697
.pipe(sassCompilation)
98+
.pipe(sourcemaps.write())
9799
.pipe(rename('style.css'))
98100
.pipe(gulp.dest('./public'));
99101
});

0 commit comments

Comments
 (0)