Commit eb31750c by jane0302

Merge branch 'master' of git.mepai.me:dengli/ypl_mobile_web

parents 5ed232b1 d716215b
Pipeline #1015 skipped in 0 seconds
......@@ -36,6 +36,12 @@ var config = {
// 编译
gulp.task('less',function () {
return gulp.src(config.path.less)
.pipe(plugins.plumber({
errorHandler: function ( err ) {
console.log(err);
this.emit('end');
}
}))
.pipe(plugins.less())
.pipe(gulp.dest(config.dist.css))
.pipe(reload({stream:true}));
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment