Files
bower/lib/commands/index.js
André Cruz f9f8f7aebd Implement link command.
Also:
- CS fixes
- Remove options argument from commands that do not have them
- Use console.trace instead of err.stack (more reliable)
2013-06-24 23:19:59 +01:00

14 lines
400 B
JavaScript

module.exports = {
'cache': require('./cache'),
'info': require('./info'),
'install': require('./install'),
'help': require('./help'),
'link': require('./link'),
'list': require('./list'),
'lookup': require('./lookup'),
'register': require('./register'),
'search': require('./search'),
'update': require('./update'),
'uninstall': require('./uninstall')
};