File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -69,10 +69,7 @@ export class Manifest {
69
69
}
70
70
71
71
this . logger . warn ( WARN_MESSAGE )
72
- this . logger . fatal ( {
73
- message : response . stderr ,
74
- prefix : 'generate:manifest' ,
75
- } )
72
+ console . log ( response . stderr )
76
73
return
77
74
}
78
75
@@ -94,10 +91,7 @@ export class Manifest {
94
91
*/
95
92
this . logger . warn ( WARN_MESSAGE )
96
93
if ( error . stderr ) {
97
- this . logger . fatal ( {
98
- message : error . stderr ,
99
- prefix : 'generate:manifest' ,
100
- } )
94
+ console . log ( error . stderr )
101
95
}
102
96
}
103
97
}
Original file line number Diff line number Diff line change @@ -371,7 +371,6 @@ test.group('Compiler', (group) => {
371
371
'underline(magenta(pending)) compiling typescript source files' ,
372
372
'underline(green(success)) built successfully' ,
373
373
'underline(blue(info)) copy .adonisrc.json dim(yellow(build))' ,
374
- 'underline(yellow(warn)) Unable to generate manifest file. Check the following error stack for more info' ,
375
374
] )
376
375
377
376
assert . isFalse ( require ( join ( fs . basePath , 'build' , '.adonisrc.json' ) ) . typescript )
@@ -413,7 +412,6 @@ test.group('Compiler', (group) => {
413
412
'underline(magenta(pending)) compiling typescript source files' ,
414
413
'underline(green(success)) built successfully' ,
415
414
'underline(blue(info)) copy .adonisrc.json dim(yellow(build))' ,
416
- 'underline(yellow(warn)) Unable to generate manifest file. Check the following error stack for more info' ,
417
415
] )
418
416
419
417
assert . isFalse ( require ( join ( fs . basePath , 'build' , '.adonisrc.json' ) ) . typescript )
You can’t perform that action at this time.
0 commit comments