mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-18 09:13:28 +00:00
Remove empty catch blocks and remove allow-empty-catch tslint rule (#170)
* Remove empty catch blocks and remove allow-empty-catch tslint rule * Update jslib to #513 * Fix build errors after update of jslib * Add missing params to LoginCommand ctor * Fix build errors due to missing dependencies * Add changes to package.json and package-lock.json * Fixed formatting in tslint.json
This commit is contained in:
committed by
GitHub
parent
e43d192007
commit
a96144d6dc
@@ -101,7 +101,8 @@ export class Program extends BaseProgram {
|
||||
await this.exitIfAuthed();
|
||||
const command = new LoginCommand(this.main.authService, this.main.apiService, this.main.i18nService,
|
||||
this.main.environmentService, this.main.passwordGenerationService, this.main.cryptoFunctionService,
|
||||
this.main.platformUtilsService, 'connector');
|
||||
this.main.platformUtilsService, this.main.userService, this.main.cryptoService,
|
||||
this.main.policyService, 'connector', this.main.loginSyncService);
|
||||
|
||||
if (!Utils.isNullOrWhitespace(clientId)) {
|
||||
process.env.BW_CLIENTID = clientId;
|
||||
|
||||
Reference in New Issue
Block a user