UNPKG

233 BJavaScriptView Raw
1'use strict';
2
3var commands = require('./commands/');
4
5module.exports = function(app, options) {
6 for (var key in commands) {
7 if (commands.hasOwnProperty(key)) {
8 app.cli.map(key, commands[key](app, options));
9 }
10 }
11};