这是我在gulpfile.js中的脚本
function scss(done) {
gulp.src(path.scss , {sourcemaps: true})
.pipe(sass({
outputStyle: 'compact', // nested, expanded, compact, compressed
indentType: 'tab',
indentWidth: 1,
linefeed : 'cr',
})
.pipe(gulp.dest('./css',{ sourcemaps: true }));
done();
}
这是我的输出样式CSS
h1 {bula bula}
h2 {bula bula }
h3 {~~~~}
但是我想要这样
h1 {bula bula}
h2 {bula bula }
h3 {~~~~}
我该如何修复gulpfile.js