@@ -53,7 +53,12 @@ export class Compiler {
53
53
* Cleans up the build directory
54
54
*/
55
55
private async cleanupBuildDirectory ( outDir : string ) {
56
- this . logger . info ( 'cleaning up build directory' , undefined , this . getRelativeUnixPath ( outDir ) )
56
+ this . getRelativeUnixPath ( outDir )
57
+ this . logger . info (
58
+ `cleaning up ${ this . logger . colors
59
+ . dim ( )
60
+ . yellow ( `"./${ this . getRelativeUnixPath ( outDir ) } "` ) } directory`
61
+ )
57
62
await remove ( outDir )
58
63
}
59
64
@@ -62,7 +67,9 @@ export class Compiler {
62
67
*/
63
68
private async copyAdonisRcFile ( outDir : string ) {
64
69
this . logger . info (
65
- `copy (${ this . logger . colors . yellow ( `${ RCFILE_NAME } => ${ this . getRelativeUnixPath ( outDir ) } ` ) } )`
70
+ `copy { ${ this . logger . colors
71
+ . dim ( )
72
+ . yellow ( `${ RCFILE_NAME } => ${ this . getRelativeUnixPath ( outDir ) } ` ) } }`
66
73
)
67
74
68
75
await outputJSON (
@@ -80,7 +87,11 @@ export class Compiler {
80
87
*/
81
88
private async copyMetaFiles ( outDir : string , extraFiles ?: string [ ] ) {
82
89
const metaFiles = this . rcFile . getMetaFilesGlob ( ) . concat ( extraFiles || [ ] )
83
- this . logger . info ( `copy ${ metaFiles . join ( ',' ) } ` , undefined , this . getRelativeUnixPath ( outDir ) )
90
+ this . logger . info (
91
+ `copy { ${ this . logger . colors
92
+ . dim ( )
93
+ . yellow ( `${ metaFiles . join ( ',' ) } => ${ this . getRelativeUnixPath ( outDir ) } ` ) } }`
94
+ )
84
95
await this . copyFiles ( metaFiles , outDir )
85
96
}
86
97
0 commit comments