@newos/cli
Version:
Command-line interface for the NewOS
20 lines • 918 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const name = 'status';
const signature = name;
const description = 'print information about the local status of your app in a specific network';
const register = program => program
.command(signature, undefined, { noHelp: true })
.description(description)
.usage('--network <network>')
.option('--fetch', 'retrieve app information directly from the network instead of from the local network file')
.option('--fix', 'update local network file with information retrieved from the network')
.withNetworkOptions()
.action(action);
async function action(options) {
throw Error('Status command has been removed.');
if (!options.dontExitProcess && process.env.NODE_ENV !== 'test')
process.exit(0);
}
exports.default = { name, signature, description, register, action };
//# sourceMappingURL=status.js.map