New string for error logging

This commit is contained in:
Joakim Strandell 2015-01-15 13:07:49 +01:00
parent 24cc36a033
commit 55601e217b
2 changed files with 2 additions and 2 deletions

View file

@ -61,7 +61,7 @@ module.exports = function (options) {
opts.error = function (err) {
if (opts.errLogToConsole) {
gutil.log('[gulp-sass] ' + err);
gutil.log('[gulp-sass] ' + err.message + ' on line ' + err.line + ' in ' + err.file);
return cb();
}

View file

@ -1,6 +1,6 @@
{
"name": "gulp-sass",
"version": "1.3.1",
"version": "1.3.2",
"description": "Gulp plugin for sass",
"main": "index.js",
"scripts": {