| 7 | const inquirer = require('inquirer'); |
| 8 | |
| 9 | class ReleaseCommand extends Command { |
| 10 | |
| 11 | constructor() { |
| 12 | |
| 13 | super('release'); |
| 14 | |
| 15 | } |
| 16 | |
| 17 | help() { |
| 18 | |
| 19 | return { |
| 20 | description: 'Pushes release of Autocode package to registry and cloud (Alias of `lib up -r`)' |
| 21 | }; |
| 22 | |
| 23 | } |
| 24 | |
| 25 | run(params, callback) { |
| 26 | |
| 27 | params.flags.r = []; |
| 28 | params.args = []; |
| 29 | UpCommand.prototype.run.call(this, params, callback); |
| 30 | |
| 31 | } |
| 32 | |
| 33 | } |
| 34 | |
| 35 | module.exports = ReleaseCommand; |
nothing calls this directly
no outgoing calls
no test coverage detected