fixed gulp less

This commit is contained in:
kayone 2014-08-29 23:19:57 -07:00
parent 9db41cf4be
commit e3411319b8
2 changed files with 8 additions and 1 deletions

7
gulp/errorHandler.js Normal file
View File

@ -0,0 +1,7 @@
module.exports = {
onError:function (error) {
//If you want details of the error in the console
console.log(error.toString());
this.emit('end');
}
}

View File

@ -12,5 +12,5 @@ gulp.task('imageMin', function () {
svgoPlugins: [{removeViewBox: false}]
}))
.pipe(print())
.pipe(gulp.dest(paths.src.images));
.pipe(gulp.dest(paths.src.content + 'Images/'));
});