MCPcopy Create free account
hub / github.com/acode/cli / ReleaseCommand

Class ReleaseCommand

cli/commands/release.js:9–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7const inquirer = require('inquirer');
8
9class 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
35module.exports = ReleaseCommand;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected