Closed ackzell closed 8 years ago
not sure. try searching gulp jscs and ubunto for that error
Thank you @johnpapa,
For hottowel and for the response as well :)
For now I modified the gulp-jscs index.js file and wrapped that line into a try/catch statement. This way the execution doesn't break.
, function (cb) {
if (out.length > 0) {
try {
console.log('out is: ', out[1]);
this.emit('error', new gutil.PluginError('gulp-jscs', out.join('\n\n'), {
showStack: false
}));
} catch (e) {
console.log('exception: ', e);
}
}
cb();
})
create an issue with them and maybe a PR
I'm runing Ubuntu 14.10 64Bits. Node.js version is 0.12.2 and NPM version is 2.7.4.
I can't figure out this one, after running either
gulp serve-build
or justgulp build
I get this error:I have a JSCS plugin for Sublime Text 3 and I can't find any error in the style. Could anyone give me a hand please?