File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ export class MigrateController extends UpdateControllerBase implements IMigrateC
143143 }
144144 }
145145
146- private async cleanUpProject ( projectData : IProjectData ) {
146+ private async cleanUpProject ( projectData : IProjectData ) : Promise < void > {
147147 this . $logger . info ( "Clean old project artefacts." ) ;
148148 this . $fs . deleteDirectory ( path . join ( projectData . projectDir , constants . HOOKS_DIR_NAME ) ) ;
149149 this . $fs . deleteDirectory ( path . join ( projectData . projectDir , constants . PLATFORMS_DIR_NAME ) ) ;
@@ -157,7 +157,7 @@ export class MigrateController extends UpdateControllerBase implements IMigrateC
157157 this . $logger . info ( "Clean old project artefacts complete." ) ;
158158 }
159159
160- private async handleAutoGeneratedFiles ( backupDir : string , projectData : IProjectData ) {
160+ private handleAutoGeneratedFiles ( backupDir : string , projectData : IProjectData ) : void {
161161 const globOptions : glob . IOptions = {
162162 silent : true ,
163163 nocase : true ,
You can’t perform that action at this time.
0 commit comments