grunt-yate
Advanced tools
Comparing version 0.0.10 to 0.0.11
{ | ||
"name": "grunt-yate", | ||
"description": "Yate compiler plugin", | ||
"version": "0.0.10", | ||
"version": "0.0.11", | ||
"homepage": "https://github.com/lapple/grunt-yate", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -37,3 +37,4 @@ /* | ||
var done = this.async(); | ||
// Error flag. | ||
var failure = false; | ||
@@ -61,5 +62,6 @@ // Iterate over all specified file groups. | ||
} catch(e) { | ||
failure = true; | ||
grunt.event.emit('yate:error', e); | ||
grunt.fail.warn(e); | ||
done(); | ||
} | ||
@@ -70,2 +72,6 @@ | ||
if (failure) { | ||
return next(); | ||
} | ||
// Building a list of files to prepend to the compiled template. | ||
@@ -101,3 +107,3 @@ var includes = grunt.file.expand(options.externals); | ||
}, done); | ||
}, this.async()); | ||
}); | ||
@@ -104,0 +110,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14271
312