UNPKG

248 BJavaScriptView Raw
1module.exports = {
2 signatures: {
3 wildcard: '*'
4 },
5 actions: {
6 commandNotFound: function(command) {
7 if (command != null) {
8 console.error("Command not found: " + command);
9 }
10 return process.exit(1);
11 }
12 }
13};