mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-26 00:41:04 +00:00
7f4863da86
This new version supports promises and contains speed improvements.
12 lines
329 B
CoffeeScript
12 lines
329 B
CoffeeScript
nplugm = require('nplugm')
|
|
_ = require('lodash')
|
|
capitano = require('capitano')
|
|
|
|
exports.register = (regex) ->
|
|
nplugm.list(regex).map (plugin) ->
|
|
command = require(plugin)
|
|
return capitano.command(command) if not _.isArray(command)
|
|
return _.each(command, capitano.command)
|
|
.catch (error) ->
|
|
console.error(error.message)
|