grunt-yate
Advanced tools
Comparing version 0.0.7 to 0.0.8
{ | ||
"name": "grunt-yate", | ||
"description": "Yate compiler plugin", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"homepage": "https://github.com/lapple/grunt-yate", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -53,3 +53,11 @@ /* | ||
}).map(function(filepath) { | ||
return yate.compile(filepath).js; | ||
var compiled; | ||
try { | ||
compiled = yate.compile(filepath).js; | ||
} catch(e) { | ||
grunt.log.warn(e); | ||
} | ||
return compiled; | ||
}).join(grunt.util.linefeed); | ||
@@ -56,0 +64,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
14099
305