mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-20 21:01:29 +01:00
Use stderr for prompts to better allow scripting (#14)
* Update invocations of inquirer.js prompts to output prompt to stderr. fixes #7 * Updates to use updated typings from @types/inquirer
This commit is contained in:
parent
a1b0dcf8fa
commit
c7160c0870
8
package-lock.json
generated
8
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bitwarden/cli",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
@ -23,9 +23,9 @@
|
||||
}
|
||||
},
|
||||
"@types/inquirer": {
|
||||
"version": "0.0.41",
|
||||
"resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-0.0.41.tgz",
|
||||
"integrity": "sha512-kIWkK3FECGKt9OrURxRvi59gwMNiWTePXWOvaJn+xhplbEvu91hIDMfLe5PUu+cEEMmD6EFU4VFJJKKp5kzCtw==",
|
||||
"version": "0.0.42",
|
||||
"resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-0.0.42.tgz",
|
||||
"integrity": "sha512-flMaNWU2g9NrtZ4bIV+7SEY2W7OdWNNhmJ0rE1lWVxGrkp3TfFGMcFCxRIBmGWigI8e6n+2HqLjizTTfgcpHLg==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"@types/rx": "4.1.1",
|
||||
|
@ -46,7 +46,7 @@
|
||||
"devDependencies": {
|
||||
"@types/commander": "^2.12.2",
|
||||
"@types/form-data": "^2.2.1",
|
||||
"@types/inquirer": "^0.0.41",
|
||||
"@types/inquirer": "^0.0.42",
|
||||
"@types/lowdb": "^1.0.1",
|
||||
"@types/lunr": "^2.1.5",
|
||||
"@types/node": "^10.0.8",
|
||||
|
@ -19,7 +19,7 @@ export class ExportCommand {
|
||||
|
||||
async run(password: string, cmd: program.Command): Promise<Response> {
|
||||
if (password == null || password === '') {
|
||||
const answer = await inquirer.prompt<any>({
|
||||
const answer: inquirer.Answers = await inquirer.createPromptModule({ output: process.stderr })({
|
||||
type: 'password',
|
||||
name: 'password',
|
||||
message: 'Master password:',
|
||||
|
@ -22,7 +22,7 @@ export class LoginCommand {
|
||||
|
||||
async run(email: string, password: string, cmd: program.Command) {
|
||||
if (email == null || email === '') {
|
||||
const answer = await inquirer.prompt<any>({
|
||||
const answer: inquirer.Answers = await inquirer.createPromptModule({ output: process.stderr })({
|
||||
type: 'input',
|
||||
name: 'email',
|
||||
message: 'Email address:',
|
||||
@ -37,7 +37,7 @@ export class LoginCommand {
|
||||
}
|
||||
|
||||
if (password == null || password === '') {
|
||||
const answer = await inquirer.prompt<any>({
|
||||
const answer: inquirer.Answers = await inquirer.createPromptModule({ output: process.stderr })({
|
||||
type: 'password',
|
||||
name: 'password',
|
||||
message: 'Master password:',
|
||||
@ -89,7 +89,7 @@ export class LoginCommand {
|
||||
const options = twoFactorProviders.map((p) => p.name);
|
||||
options.push(new inquirer.Separator());
|
||||
options.push('Cancel');
|
||||
const answer = await inquirer.prompt<any>({
|
||||
const answer: inquirer.Answers = await inquirer.createPromptModule({ output: process.stderr })({
|
||||
type: 'list',
|
||||
name: 'method',
|
||||
message: 'Two-step login method:',
|
||||
@ -111,7 +111,7 @@ export class LoginCommand {
|
||||
}
|
||||
|
||||
if (twoFactorToken == null) {
|
||||
const answer = await inquirer.prompt<any>({
|
||||
const answer: inquirer.Answers = await inquirer.createPromptModule({ output: process.stderr })({
|
||||
type: 'input',
|
||||
name: 'token',
|
||||
message: 'Two-step login code:',
|
||||
|
@ -16,7 +16,7 @@ export class UnlockCommand {
|
||||
|
||||
async run(password: string, cmd: program.Command) {
|
||||
if (password == null || password === '') {
|
||||
const answer = await inquirer.prompt<any>({
|
||||
const answer: inquirer.Answers = await inquirer.createPromptModule({ output: process.stderr })({
|
||||
type: 'password',
|
||||
name: 'password',
|
||||
message: 'Master password:',
|
||||
|
Loading…
Reference in New Issue
Block a user