Allow language-coffee-script without a license for now

This commit is contained in:
Nathan Sobo
2014-02-21 14:22:40 -07:00
parent ea43384244
commit 458dea9780

View File

@@ -15,6 +15,12 @@ module.exports = (grunt) ->
console.error(err)
exit 1
# Omit failure for coffee-script bundle for now. It seems to be intended
# to be open source but has no license.
for dependencyName in keys(summary)
if dependencyName.match /^language-coffee-script@/
delete summary[dependencyName]
if size(summary)
console.error "Found dependencies without permissive licenses:"
for name in keys(summary).sort()