File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -225,7 +225,11 @@ export class Compiler {
225225
226226 this . _logger . info ( { message : 'installing production dependencies' , suffix : client } )
227227 await new Installer ( config . options . outDir ! , client ) . install ( )
228- await this . manifest . generate ( )
228+
229+ /**
230+ * Manifest can be generated without blocking the flow
231+ */
232+ this . manifest . generate ( )
229233
230234 /**
231235 * Start HTTP server in production
Original file line number Diff line number Diff line change @@ -51,6 +51,10 @@ export class Watcher {
5151 await this . compiler . copyAdonisRcFile ( config . options . outDir ! )
5252 await this . compiler . copyMetaFiles ( config . options . outDir ! )
5353 this . compiler . buildTypescriptSource ( config )
54+
55+ /**
56+ * Manifest can be generated without blocking the flow
57+ */
5458 this . compiler . manifest . generate ( )
5559
5660 /**
You can’t perform that action at this time.
0 commit comments