소스 검색

Merge pull request #2125 from Bpaterak/less_errorfix

added a stream end to gulp-less to prevent less errors stopping watch
bubble
Tony Tam 8 년 전
부모
커밋
0d1fda51eb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      gulpfile.js

+ 1
- 1
gulpfile.js 파일 보기

@@ -91,7 +91,7 @@ function _less() {
'./src/main/less/style.less'
])
.pipe(less())
.on('error', log)
.on('error', function(err){ log(err); this.emit('end');})
.pipe(gulp.dest('./src/main/html/css/'))
.pipe(connect.reload());
}


불러오는 중...
취소
저장