@@ -18,12 +18,12 @@ module.exports = async function renderHtml({
18
18
webpackStats
19
19
} ) {
20
20
const renderFile = renderStats . assetsByChunkName [ renderEntry ] ;
21
- trace ( "Render file :" , { renderFile } ) ;
21
+ trace ( "Render route :" , { renderFile } ) ;
22
22
if ( ! renderFile ) {
23
23
throw new Error (
24
- `Unable to find renderEntry ${ renderEntry } in assets ${ Object . keys (
24
+ `Unable to find renderEntry " ${ renderEntry } " in assets. Possible entries are: ${ Object . keys (
25
25
renderStats . assetsByChunkName
26
- ) } .`
26
+ ) . join ( ", " ) } .`
27
27
) ;
28
28
}
29
29
@@ -33,10 +33,9 @@ module.exports = async function renderHtml({
33
33
} ) ;
34
34
if ( typeof renderFunc !== "function" ) {
35
35
throw new Error (
36
- `Unable to find render function. File ${ renderFile } . Recieved ${ typeof renderFunc } .`
36
+ `Unable to find render function. File " ${ renderFile } " . Recieved ${ typeof renderFunc } .`
37
37
) ;
38
38
}
39
- trace ( `Renderer created` ) ;
40
39
41
40
async function emitFile ( dir , content ) {
42
41
await new Promise ( ( resolve , reject ) =>
@@ -67,7 +66,7 @@ module.exports = async function renderHtml({
67
66
throw new Error (
68
67
`Missing route in ${ JSON . stringify (
69
68
routeData
70
- ) } . Unable to render page without a path `
69
+ ) } . Unable to render page without a route. `
71
70
) ;
72
71
}
73
72
const relativeFilePath = transformFilePath ( routeData ) ;
@@ -90,9 +89,9 @@ module.exports = async function renderHtml({
90
89
} ) ;
91
90
} catch ( error ) {
92
91
console . error (
93
- `🚨 ${ chalk . red ( " An error occured rending:" ) } ${ chalk . blue (
92
+ `🚨 ${ chalk . red ( ` An error occured rendering "` ) } ${ chalk . blue (
94
93
renderFile
95
- ) } . See below error.`
94
+ ) } " . See below error.`
96
95
) ;
97
96
console . error ( error ) ;
98
97
await emitFile ( newFilePath , error . toString ( ) ) ;
@@ -101,7 +100,7 @@ module.exports = async function renderHtml({
101
100
102
101
if ( typeof renderResult !== "string" ) {
103
102
throw new Error (
104
- `Render must return a string. Recieved ${ typeof renderResult } .`
103
+ `Render must return a string. Recieved " ${ typeof renderResult } " .`
105
104
) ;
106
105
}
107
106
0 commit comments