heroku
Version:
CLI to interact with Heroku
16 lines (15 loc) • 553 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const command_1 = require("@heroku-cli/command");
const core_1 = require("@oclif/core");
class Logout extends command_1.Command {
async run() {
core_1.ux.action.start('Logging out');
await this.heroku.logout();
await this.config.runHook('recache', { type: 'logout' });
core_1.ux.action.stop();
}
}
exports.default = Logout;
Logout.description = 'clears local login credentials and invalidates API session';
Logout.aliases = ['logout'];
;