We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 667cd6a commit 460fb99Copy full SHA for 460fb99
1 file changed
gulpfile.js
@@ -17,7 +17,9 @@ var fnSass = function (path) {
17
.pipe(plugins.plumber())
18
.pipe(plugins.filesize()) // .pipe(plugins.size({ showFiles: true }))
19
.pipe(plugins.concat('main.scss'))
20
- .pipe(plugins.sass())
+ .pipe(plugins.sass({
21
+ sourceComments: 'map'
22
+ }))
23
.pipe(plugins.autoprefixer('last 2 version', 'safari 5', 'ie 8', 'ie 9', 'opera 12.1', 'ios 6', 'android 4'))
24
25
.pipe(gulp.dest(config.build + '/assets'));
0 commit comments