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
143
143
}
144
144
}
145
145
146
- private async cleanUpProject ( projectData : IProjectData ) {
146
+ private async cleanUpProject ( projectData : IProjectData ) : Promise < void > {
147
147
this . $logger . info ( "Clean old project artefacts." ) ;
148
148
this . $fs . deleteDirectory ( path . join ( projectData . projectDir , constants . HOOKS_DIR_NAME ) ) ;
149
149
this . $fs . deleteDirectory ( path . join ( projectData . projectDir , constants . PLATFORMS_DIR_NAME ) ) ;
@@ -157,7 +157,7 @@ export class MigrateController extends UpdateControllerBase implements IMigrateC
157
157
this . $logger . info ( "Clean old project artefacts complete." ) ;
158
158
}
159
159
160
- private async handleAutoGeneratedFiles ( backupDir : string , projectData : IProjectData ) {
160
+ private handleAutoGeneratedFiles ( backupDir : string , projectData : IProjectData ) : void {
161
161
const globOptions : glob . IOptions = {
162
162
silent : true ,
163
163
nocase : true ,
You can’t perform that action at this time.
0 commit comments