mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 22:23:07 +00:00
a803d4f646
Since we're now forcing users to rely on `npm` directly for updates, we can also get rid of plugin commands that attempt to install/update/remove using npm programatically and require users to use `npm` directly as well. This commit removes the following commands: - `plugins` - `plugin install` - `plugin update` - `plugin remove` Despite plugin related commands being removed, *the functionality that scans for plugins and registers them remains intact*.
16 lines
369 B
JavaScript
16 lines
369 B
JavaScript
(function() {
|
|
module.exports = {
|
|
wizard: require('./wizard'),
|
|
app: require('./app'),
|
|
info: require('./info'),
|
|
auth: require('./auth'),
|
|
device: require('./device'),
|
|
env: require('./environment-variables'),
|
|
keys: require('./keys'),
|
|
logs: require('./logs'),
|
|
notes: require('./notes'),
|
|
help: require('./help')
|
|
};
|
|
|
|
}).call(this);
|