File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import {
2121import { isObject } from '@salesforce/ts-types' ;
2222import { Record } from 'jsforce' ;
2323import { omit } from '@salesforce/kit' ;
24- import { getAliasByUsername } from './utils.js' ;
24+ import utils from './utils.js' ;
2525import {
2626 ScratchOrgInfoSObject ,
2727 ExtendedAuthFields ,
@@ -71,7 +71,7 @@ export class OrgListUtil {
7171 userFilenames : string [ ] ,
7272 skipConnection = false
7373 ) : Promise < OrgGroupsFullyPopulated > {
74- const contents : AuthInfo [ ] = await OrgListUtil . readAuthFiles ( userFilenames ) ;
74+ const contents = await OrgListUtil . readAuthFiles ( userFilenames ) ;
7575 const orgs = await OrgListUtil . groupOrgs ( contents ) ;
7676
7777 // parallelize two very independent operations
@@ -208,7 +208,7 @@ export class OrgListUtil {
208208 }
209209
210210 const [ alias , lastUsed ] = await Promise . all ( [
211- getAliasByUsername ( currentValue . username ) ,
211+ utils . getAliasByUsername ( currentValue . username ) ,
212212 fs . stat ( join ( Global . SFDX_DIR , `${ currentValue . username } .json` ) ) ,
213213 ] ) ;
214214
You can’t perform that action at this time.
0 commit comments