We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb11aca commit 39befddCopy full SHA for 39befdd
src/command.ts
@@ -6,7 +6,9 @@ import {setAccessTokenConfig} from './utils'
6
7
export default abstract class HackMDCommand extends Command {
8
async getAPIClient() {
9
- const token = config.accessToken || await CliUx.ux.prompt('Enter your access token')
+ const token = config.accessToken || await CliUx.ux.prompt('Enter your access token', {
10
+ type: 'hide'
11
+ })
12
const APIClient = new API(token, config.hackmdAPIEndpointURL)
13
14
try {
0 commit comments