내 gulpfile ([email protected])의 sass는 많은 오류를보고하며 계속해야합니다. 이와 같은 없습니다 오류 :sass/gulp-sass는 특정 오류 (무효 속성)에 대해 침묵을 지키고 있습니다.
=clearfix()
&:after
content: ""
display: table
clear both
content
및 display
합니다 (믹스 인을 참조) 실제 클래스로 제대로 만들지 만, (나는 결장을 놓친 때문에) clear
하지 않습니다. 이것은 구문 오류입니다 (따라서 rareproperty: 42px;
은 정상적으로 처리되지 않았습니다). → 여전히 : 오류가 발생하지 않으며 중단이 없습니다.
내 꿀꺽 작업 :
gulp.task('sass', function() {
return gulp.src(src.scssMaster)
.pipe(plumber())
.pipe(sourcemaps.init())
.pipe( sass({
debugInfo : true,
lineNumbers : true,
outputStyle: 'expanded'
})
.on('error', function(err){
gutil.log(err); // stackoverflow.com/a/30742014/444255
this.emit('end');
})
)
.pipe(autoprefixer({
browsers: ['iOS >= 5', 'ie 8', 'Firefox > 2'],
cascade: true,
remove: true
}))
.pipe(rename('lznet.css'))
.pipe(sourcemaps.write('../maps'))
.pipe(gulp.dest(src.cssDir))
.pipe(reload({stream: true}))
.on('end',() => gutil.log('sass thing done'));
});
밀레 그라 ❤
뛰어난 답변 –