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 {
225
225
226
226
this . _logger . info ( { message : 'installing production dependencies' , suffix : client } )
227
227
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 ( )
229
233
230
234
/**
231
235
* Start HTTP server in production
Original file line number Diff line number Diff line change @@ -51,6 +51,10 @@ export class Watcher {
51
51
await this . compiler . copyAdonisRcFile ( config . options . outDir ! )
52
52
await this . compiler . copyMetaFiles ( config . options . outDir ! )
53
53
this . compiler . buildTypescriptSource ( config )
54
+
55
+ /**
56
+ * Manifest can be generated without blocking the flow
57
+ */
54
58
this . compiler . manifest . generate ( )
55
59
56
60
/**
You can’t perform that action at this time.
0 commit comments