mirror of
https://github.com/bower/bower.git
synced 2026-04-24 03:00:19 -04:00
Also: - CS fixes - Remove options argument from commands that do not have them - Use console.trace instead of err.stack (more reliable)
14 lines
400 B
JavaScript
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')
|
|
};
|