Browse Source

Merge pull request #987 from gn0st1c/patch-2

Update gulpfile.js
v2
Xose Pérez 6 years ago
committed by GitHub
parent
commit
59d4afe6cb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      code/gulpfile.js

+ 7
- 7
code/gulpfile.js View File

@ -96,14 +96,14 @@ var buildHeaderFile = function() {
cb(0, destination);
});
});
}
var htmllintReporter = function(filepath, issues) {
if (issues.length > 0) {
issues.forEach(function (issue) {
console.info(
if (issues.length > 0) {
issues.forEach(function (issue) {
console.info(
'[gulp-htmllint] ' +
filepath + ' [' +
issue.line + ',' +
@ -111,9 +111,9 @@ var htmllintReporter = function(filepath, issues) {
'(' + issue.code + ') ' +
issue.msg
);
});
process.exitCode = 1;
}
});
process.exitCode = 1;
}
};
var buildWebUI = function(module) {


Loading…
Cancel
Save