Skip to content

Commit 1c69c92

Browse files
committed
fix: Smaller fix
1 parent d78c828 commit 1c69c92

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

lib/DefaultOptions.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,31 +9,34 @@ export class DefaultOptions extends Options {
99
description: 'URL to your Confluence instance',
1010
required: true,
1111
})
12-
confluenceUrl: string
12+
public confluenceUrl: string
1313

1414
@option({
1515
name: 'user',
1616
flag: 'u',
1717
description: 'Username for checking all confluence documents',
1818
required: false,
19+
default: '',
1920
})
20-
confluenceUser = ''
21+
public confluenceUser: string
2122

2223
@option({
2324
name: 'password',
2425
flag: 'p',
2526
description: 'Password for the user',
2627
required: false,
28+
default: '',
2729
})
28-
confluencePassword = ''
30+
public confluencePassword: string
2931

3032
@option({
3133
name: 'token',
3234
flag: 't',
3335
description: 'Personal Access Token for the user. If set user and password will be ignored',
3436
required: false,
37+
default: '',
3538
})
36-
confluencePersonalAccessToken = ''
39+
public confluencePersonalAccessToken: string
3740

3841
@option({
3942
description: 'Log-Level to use (trace, debug, verbose, info, warn, error)',

0 commit comments

Comments
 (0)