@@ -12,8 +12,8 @@ export class InfrastructureMessages {
1212 static FATAL_UnexpectedException = SevFatal | 0x0001 ;
1313
1414 // For this message, we override the filename with the passed-in file. A bit of a hack but does the job
15- static Info_BuildingFile = ( o :{ filename :string } ) => ( { filename :o . filename , ...m ( this . INFO_BuildingFile ,
16- `Building ${ o . filename } ` ) } ) ;
15+ static Info_BuildingFile = ( o :{ filename :string , relativeFilename : string } ) => ( { filename :o . filename , ...m ( this . INFO_BuildingFile ,
16+ `Building ${ o . relativeFilename } ` ) } ) ;
1717 static INFO_BuildingFile = SevInfo | 0x0002 ;
1818
1919 static Error_FileDoesNotExist = ( o :{ filename :string } ) => m ( this . ERROR_FileDoesNotExist ,
@@ -29,13 +29,13 @@ export class InfrastructureMessages {
2929 static ERROR_OutFileNotValidForProjects = SevError | 0x0005 ;
3030
3131 // For this message, we override the filename with the passed-in file. A bit of a hack but does the job
32- static Info_FileBuiltSuccessfully = ( o :{ filename :string } ) => ( { filename :o . filename , ...m ( this . INFO_FileBuiltSuccessfully ,
33- `${ o . filename } built successfully.` ) } ) ;
32+ static Info_FileBuiltSuccessfully = ( o :{ filename :string , relativeFilename : string } ) => ( { filename :o . filename , ...m ( this . INFO_FileBuiltSuccessfully ,
33+ `${ o . relativeFilename } built successfully.` ) } ) ;
3434 static INFO_FileBuiltSuccessfully = SevInfo | 0x0006 ;
3535
3636 // For this message, we override the filename with the passed-in file. A bit of a hack but does the job
37- static Info_FileNotBuiltSuccessfully = ( o :{ filename :string } ) => ( { filename :o . filename , ...m ( this . INFO_FileNotBuiltSuccessfully ,
38- `${ o . filename } failed to build.` ) } ) ;
37+ static Info_FileNotBuiltSuccessfully = ( o :{ filename :string , relativeFilename : string } ) => ( { filename :o . filename , ...m ( this . INFO_FileNotBuiltSuccessfully ,
38+ `${ o . relativeFilename } failed to build.` ) } ) ;
3939 static INFO_FileNotBuiltSuccessfully = SevInfo | 0x0007 ;
4040
4141 static Error_InvalidProjectFile = ( o :{ message :string } ) => m ( this . ERROR_InvalidProjectFile ,
@@ -51,13 +51,13 @@ export class InfrastructureMessages {
5151 static ERROR_UnknownFileFormat = SevError | 0x000A ;
5252
5353 // For this message, we override the filename with the passed-in file. A bit of a hack but does the job
54- static Info_ProjectBuiltSuccessfully = ( o :{ filename :string } ) => ( { filename :o . filename , ...m ( this . INFO_ProjectBuiltSuccessfully ,
55- `Project ${ o . filename } built successfully.` ) } ) ;
54+ static Info_ProjectBuiltSuccessfully = ( o :{ filename :string , relativeFilename : string } ) => ( { filename :o . filename , ...m ( this . INFO_ProjectBuiltSuccessfully ,
55+ `Project ${ o . relativeFilename } built successfully.` ) } ) ;
5656 static INFO_ProjectBuiltSuccessfully = SevInfo | 0x000B ;
5757
5858 // For this message, we override the filename with the passed-in file. A bit of a hack but does the job
59- static Info_ProjectNotBuiltSuccessfully = ( o :{ filename :string } ) => ( { filename :o . filename , ...m ( this . INFO_ProjectNotBuiltSuccessfully ,
60- `Project ${ o . filename } failed to build.` ) } ) ;
59+ static Info_ProjectNotBuiltSuccessfully = ( o :{ filename :string , relativeFilename : string } ) => ( { filename :o . filename , ...m ( this . INFO_ProjectNotBuiltSuccessfully ,
60+ `Project ${ o . relativeFilename } failed to build.` ) } ) ;
6161 static INFO_ProjectNotBuiltSuccessfully = SevInfo | 0x000C ;
6262
6363 static Info_TooManyMessages = ( o :{ count :number } ) => m ( this . INFO_TooManyMessages ,
0 commit comments