@@ -13,7 +13,7 @@ export class MakeTsListCommand extends BaseCommand {
1313 const libs = new Libs ( options . folders , options . rootFolder ) ;
1414 libs . debug = this . debug ;
1515 return await new Promise < boolean > ( ( resolve : any ) =>
16- libs . makeTsList ( this . options ) . then ( ( result : boolean ) => {
16+ libs . makeTsList ( options ) . then ( ( result : boolean ) => {
1717 this . log ( 'make-ts-list' ) . info ( 'Done!' ) ;
1818 resolve ( true ) ;
1919 } ) . catch ( ( e : any ) => {
@@ -28,7 +28,7 @@ export class MakeTsListCommand extends BaseCommand {
2828 const lib = new Lib ( options . folder , options . rootFolder ) ;
2929 lib . debug = this . debug ;
3030 return await new Promise < boolean > ( ( resolve : any ) =>
31- lib . makeTsList ( this . options ) . then ( ( result : boolean ) => {
31+ lib . makeTsList ( options ) . then ( ( result : boolean ) => {
3232 this . log ( 'make-ts-list' ) . info ( 'Done!' ) ;
3333 resolve ( true ) ;
3434 } ) . catch ( ( e : any ) => {
@@ -43,7 +43,7 @@ export class MakeTsListCommand extends BaseCommand {
4343 const apps = new Apps ( options . folders , options . rootFolder ) ;
4444 apps . debug = this . debug ;
4545 return await new Promise < boolean > ( ( resolve : any ) =>
46- apps . makeTsList ( this . options ) . then ( ( result : boolean ) => {
46+ apps . makeTsList ( options ) . then ( ( result : boolean ) => {
4747 this . log ( 'make-ts-list' ) . info ( 'Done!' ) ;
4848 resolve ( true ) ;
4949 } ) . catch ( ( e : any ) => {
@@ -58,7 +58,7 @@ export class MakeTsListCommand extends BaseCommand {
5858 const app = new App ( options . folder , options . rootFolder ) ;
5959 app . debug = this . debug ;
6060 return await new Promise < boolean > ( ( resolve : any ) =>
61- app . makeTsList ( this . options ) . then ( ( result : boolean ) => {
61+ app . makeTsList ( options ) . then ( ( result : boolean ) => {
6262 this . log ( 'make-ts-list' ) . info ( 'Done!' ) ;
6363 resolve ( true ) ;
6464 } ) . catch ( ( e : any ) => {
0 commit comments