@@ -18,7 +18,7 @@ import {
18
18
TransformExpressPath ,
19
19
TransformPath ,
20
20
WebpackStats ,
21
- GetRouteFromRequest
21
+ GetRouteFromRequest ,
22
22
} from "./common-types" ;
23
23
import { Compiler , compilation , Stats } from "webpack" ;
24
24
import getSourceFromCompilation from "./getSourceFromCompilation" ;
@@ -64,10 +64,10 @@ export = class HtmlRenderPlugin<Route extends BaseRoute = BaseRoute> {
64
64
getRouteFromRequest,
65
65
transformFilePath = defaultTransform ,
66
66
transformExpressPath = defaultTransform ,
67
- renderConcurrency = "serial"
67
+ renderConcurrency = "serial" ,
68
68
} = options ;
69
69
70
- const routes : Route [ ] = ( options . routes || [ "" ] ) . map ( route =>
70
+ const routes : Route [ ] = ( options . routes || [ "" ] ) . map ( ( route ) =>
71
71
typeof route === "string" ? ( { route } as Route ) : route
72
72
) ;
73
73
@@ -82,7 +82,9 @@ export = class HtmlRenderPlugin<Route extends BaseRoute = BaseRoute> {
82
82
const isBuildReady = ( ) =>
83
83
rendererCompilation &&
84
84
rendererCompilation . isReady &&
85
- clientCompilations . every ( compilationStatus => compilationStatus . isReady ) ;
85
+ clientCompilations . every (
86
+ ( compilationStatus ) => compilationStatus . isReady
87
+ ) ;
86
88
const isRendererReady = ( ) => isBuildReady ( ) && renderer ;
87
89
88
90
const renderQueue : Array < ( ) => void > = [ ] ;
@@ -101,11 +103,11 @@ export = class HtmlRenderPlugin<Route extends BaseRoute = BaseRoute> {
101
103
...route ,
102
104
...mapStatsToParams ( {
103
105
...route ,
104
- webpackStats
105
- } )
106
+ webpackStats,
107
+ } ) ,
106
108
} ;
107
109
try {
108
- const result = renderer ( renderParams ) ;
110
+ const result = await renderer ( renderParams ) ;
109
111
110
112
log (
111
113
`Successfully rendered ${ route . route } (${ timeSince ( startRenderTime ) } )`
@@ -134,7 +136,7 @@ export = class HtmlRenderPlugin<Route extends BaseRoute = BaseRoute> {
134
136
renderDirectory,
135
137
renderEntry,
136
138
routes,
137
- transformFilePath
139
+ transformFilePath,
138
140
} ) ;
139
141
} catch ( error ) {
140
142
logError ( "An error occured rendering HTML" , error ) ;
@@ -177,9 +179,9 @@ export = class HtmlRenderPlugin<Route extends BaseRoute = BaseRoute> {
177
179
? clientCompilations [ 0 ] . compilation ! . getStats ( )
178
180
: new MultiStats (
179
181
clientCompilations
180
- . map ( compilationStatus => compilationStatus . compilation )
182
+ . map ( ( compilationStatus ) => compilationStatus . compilation )
181
183
. filter ( Boolean )
182
- . map ( compilation => compilation ! . getStats ( ) )
184
+ . map ( ( compilation ) => compilation ! . getStats ( ) )
183
185
) ;
184
186
185
187
lastClientStats = clientStats ;
@@ -193,7 +195,7 @@ export = class HtmlRenderPlugin<Route extends BaseRoute = BaseRoute> {
193
195
}
194
196
} ;
195
197
196
- const onRendererReady : OnRendererReady < Route > = cb => {
198
+ const onRendererReady : OnRendererReady < Route > = ( cb ) => {
197
199
if ( isRendererReady ( ) ) {
198
200
cb ( render ) ;
199
201
} else {
@@ -214,7 +216,7 @@ export = class HtmlRenderPlugin<Route extends BaseRoute = BaseRoute> {
214
216
renderer = createRenderer ( {
215
217
source,
216
218
fileName : renderEntry ,
217
- extraGlobals
219
+ extraGlobals,
218
220
} ) ;
219
221
220
222
if ( typeof renderer !== "function" ) {
@@ -234,7 +236,7 @@ export = class HtmlRenderPlugin<Route extends BaseRoute = BaseRoute> {
234
236
235
237
const compilationStatus : CompilationStatus = {
236
238
compilation : null ,
237
- isReady : false
239
+ isReady : false ,
238
240
} ;
239
241
240
242
if ( isRenderer ) {
@@ -257,7 +259,7 @@ export = class HtmlRenderPlugin<Route extends BaseRoute = BaseRoute> {
257
259
compilationStatus . isReady = false ;
258
260
} ) ;
259
261
260
- compiler . hooks . afterEmit . tapPromise ( pluginName , async compilation => {
262
+ compiler . hooks . afterEmit . tapPromise ( pluginName , async ( compilation ) => {
261
263
log ( `Assets emitted for ${ compilerName } .` ) ;
262
264
compilationStatus . compilation = compilation ;
263
265
lastClientStats = null ;
@@ -289,7 +291,7 @@ export = class HtmlRenderPlugin<Route extends BaseRoute = BaseRoute> {
289
291
getRouteFromRequest,
290
292
onRendererReady,
291
293
getClientStats,
292
- routes
294
+ routes,
293
295
} ) ;
294
296
295
297
this . renderWhenReady = ( route : Route ) =>
0 commit comments