Print calming message on check-licenses.js succees

This commit is contained in:
Tobias Lidskog 2016-05-07 00:11:18 +02:00
parent 2e33963e50
commit 201faa92cc
1 changed files with 2 additions and 0 deletions

View File

@ -27,6 +27,8 @@ checker.init({
if (incompatibleDependencies.length > 0) {
console.error('Found packages with incompatible license: ' + JSON.stringify(incompatibleDependencies));
process.exit(1);
} else {
console.log('All is well! No packages with an incompatible license found.');
}
}
});