alks
Version:
CLI for working with ALKS
22 lines (18 loc) • 582 B
text/typescript
import commander from 'commander';
import { checkForUpdate } from '../checkForUpdate';
import { errorAndExit } from '../errorAndExit';
import { promptForToken } from '../promptForToken';
import { setToken } from '../state/token';
export async function handleAlksDeveloperLogin2fa(
_options: commander.OptionValues
) {
try {
await setToken(await promptForToken());
await checkForUpdate();
setTimeout(() => {
process.exit(0);
}, 1000); // needed for if browser is still open
} catch (err) {
errorAndExit((err as Error).message, err as Error);
}
}