File tree 1 file changed +2
-6
lines changed
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -60,9 +60,7 @@ export default abstract class MigrationsBase extends BaseCommand {
60
60
* the root dir
61
61
*/
62
62
if ( rootDir && sourceDir !== rootDir ) {
63
- console . log ( `
64
- ${ this . colors . magenta ( 'Migrations source' ) } : ${ relative ( rootDir , sourceDir ) }
65
- ` )
63
+ console . log ( `${ this . colors . magenta ( 'Migrations source base dir:' ) } ${ relative ( rootDir , sourceDir ) } ` )
66
64
}
67
65
68
66
/**
@@ -71,9 +69,7 @@ export default abstract class MigrationsBase extends BaseCommand {
71
69
*/
72
70
const compiledAt = DateTime . fromISO ( this . application . rcFile . raw . lastCompiledAt )
73
71
if ( compiledAt . isValid ) {
74
- console . log ( `
75
- ${ this . colors . magenta ( 'Source compiled at' ) } : ${ compiledAt . toLocaleString ( DateTime . DATETIME_MED ) }
76
- ` )
72
+ console . log ( `${ this . colors . magenta ( 'Last compiled at:' ) } ${ compiledAt . toLocaleString ( DateTime . DATETIME_MED ) } ` )
77
73
}
78
74
}
79
75
You can’t perform that action at this time.
0 commit comments