Skip to content

Commit 96de450

Browse files
committed
fix: Add exception-formatter dependency
1 parent edd2d6b commit 96de450

File tree

9 files changed

+930
-801
lines changed

9 files changed

+930
-801
lines changed

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
dist
2+
node_modules

MIGRATION_GUIDE_v1_to_v2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To recreate the previous behaviour pass the stats collector to render config
1111
```js
1212
plugins: [
1313
htmlRenderPlugin.statsCollectorPlugin,
14-
htmlRenderPlugin.rendererPlugin
14+
htmlRenderPlugin.rendererPlugin,
1515
];
1616
```
1717

README.md

+27-23
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ See [the full example below](#example-client-assets).
5656

5757
Add `htmlRenderPlugin.statsCollectorPlugin` to the plugins of all configurations you want to get stats for.
5858

59-
Add `htmlRenderPlugin.render` to the plugin of the configuration you want to use to render html.
59+
Add `htmlRenderPlugin.rendererPlugin` to the plugin of the configuration you want to use to render html.
6060

6161
HtmlRenderPlugin will then pass the [Webpack Stats](https://webpack.js.org/api/stats/) for those builds into your render function.
6262

@@ -70,13 +70,13 @@ module.exports = [
7070
{
7171
name: "render",
7272
target: "node", // Creates assets that render HTML that runs well in node
73-
plugins: [htmlRenderPlugin.rendererPlugin]
73+
plugins: [htmlRenderPlugin.rendererPlugin],
7474
},
7575
{
7676
name: "client",
7777
target: "web", // Creates files that run on the browser
78-
plugins: [htmlRenderPlugin.statsCollectorPlugin]
79-
}
78+
plugins: [htmlRenderPlugin.statsCollectorPlugin],
79+
},
8080
];
8181
```
8282

@@ -95,13 +95,13 @@ The [webpack entry](https://webpack.js.org/concepts/entry-points/) to use when r
9595
```js
9696
module.exports = {
9797
entry: {
98-
myRender: "./src/myRender.js"
98+
myRender: "./src/myRender.js",
9999
},
100100
plugins: [
101101
new HtmlRenderPlugin({
102-
renderEntry: "myRender"
103-
}).render
104-
]
102+
renderEntry: "myRender",
103+
}).render,
104+
],
105105
};
106106
```
107107

@@ -128,20 +128,20 @@ A route can be an object, containing a `route` parameter.
128128
const routes = [
129129
{
130130
route: "en-us/contact",
131-
language: "en-us"
131+
language: "en-us",
132132
},
133133
{
134134
route: "en-us/about",
135-
language: "en-us"
135+
language: "en-us",
136136
},
137137
{
138138
route: "en-au/contact",
139-
language: "en-au"
139+
language: "en-au",
140140
},
141141
{
142142
route: "/en-au/about",
143-
language: "en-au"
144-
}
143+
language: "en-au",
144+
},
145145
];
146146
```
147147

@@ -217,14 +217,18 @@ Using the [Webpack Dev Server Node API](https://github.com/webpack/webpack-dev-s
217217
```js
218218
const htmlRenderPlugin = new HtmlRenderPlugin({
219219
routes,
220-
skipAssets: true
220+
skipAssets: true,
221221
});
222222

223223
const compiler = webpack(config);
224224

225-
const webpackDevServer = new WebpackDevServer(compiler);
225+
const webpackDevServer = new WebpackDevServer(compiler, {
226+
before: (app) => {
227+
app.use(htmlRenderPlugin.createDevRouter());
228+
},
229+
});
226230

227-
webpackDevServer.use(htmlRenderPlugin.createDevRouter());
231+
webpackDevServer.listen("8081");
228232
```
229233

230234
**Note:** Ensure that you use the same htmlRenderPlugin created for your webpack configuration as you use for your dev server.
@@ -272,31 +276,31 @@ const path = require("path");
272276

273277
const { htmlRenderPlugin, htmlRenderClientPlugin } = createHtmlRenderPlugin({
274278
mapStatsToParams: ({ webpackStats }) => ({
275-
mainChunk: webpackStats.toJson().assetsByChunkName.main
276-
})
279+
mainChunk: webpackStats.toJson().assetsByChunkName.main,
280+
}),
277281
});
278282

279283
module.exports = [
280284
{
281285
name: "client",
282286
target: "web",
283287
output: {
284-
filename: "client-[name]-[contenthash].js"
288+
filename: "client-[name]-[contenthash].js",
285289
},
286290
entry: path.resolve("src", "client.js"),
287-
plugins: [htmlRenderPlugin.statsCollectorPlugin]
291+
plugins: [htmlRenderPlugin.statsCollectorPlugin],
288292
},
289293
{
290294
name: "render",
291295
target: "node",
292296
output: {
293297
libraryExport: "default",
294298
libraryTarget: "umd2",
295-
filename: "render-[name]-[contenthash].js"
299+
filename: "render-[name]-[contenthash].js",
296300
},
297301
entry: path.resolve("src", "render.js"),
298-
plugins: [htmlRenderPlugin.rendererPlugin]
299-
}
302+
plugins: [htmlRenderPlugin.rendererPlugin],
303+
},
300304
];
301305
```
302306

package.json

+17-17
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
"build": "tsc --declaration",
1616
"commit": "git-cz",
1717
"lint.eslint": "eslint src/**/*.ts",
18-
"lint.prettier": "prettier --check \"**/*.(js|ts)\"",
18+
"lint.prettier": "prettier --check .",
1919
"lint": "npm run lint.eslint && npm run lint.prettier",
2020
"jest": "jest",
2121
"prepublishOnly": "npm run build",
2222
"test": "npm run lint && npm run jest",
23-
"format": "prettier --write \"**/*.(js|ts)\"",
23+
"format": "prettier --write .",
2424
"release": "semantic-release"
2525
},
2626
"repository": {
@@ -32,34 +32,34 @@
3232
},
3333
"devDependencies": {
3434
"@types/debug": "^4.1.5",
35-
"@types/express": "^4.17.3",
36-
"@types/jest": "^25.1.4",
35+
"@types/express": "^4.17.6",
36+
"@types/jest": "^25.2.1",
3737
"@types/memory-fs": "^0.3.2",
3838
"@types/schema-utils": "^2.4.0",
39-
"@types/webpack": "^4.41.8",
40-
"@typescript-eslint/eslint-plugin": "^2.25.0",
41-
"@typescript-eslint/parser": "^2.25.0",
42-
"commitizen": "4.0.3",
39+
"@types/webpack": "^4.41.12",
40+
"@typescript-eslint/eslint-plugin": "^2.30.0",
41+
"@typescript-eslint/parser": "^2.30.0",
42+
"commitizen": "4.0.5",
4343
"cz-conventional-changelog": "3.1.0",
4444
"eslint": "6.8.0",
45-
"exception-formatter": "^2.1.2",
4645
"express": "^4.17.1",
47-
"jest": "25.2.3",
46+
"jest": "25.5.4",
4847
"memoizee": "^0.4.14",
4948
"memory-fs": "^0.5.0",
50-
"prettier": "2.0.2",
49+
"prettier": "2.0.5",
5150
"react": "^16.13.1",
5251
"react-dom": "^16.13.1",
53-
"semantic-release": "17.0.4",
54-
"ts-jest": "^25.2.1",
55-
"ts-node": "^8.8.1",
52+
"semantic-release": "17.0.7",
53+
"ts-jest": "^25.4.0",
54+
"ts-node": "^8.10.1",
5655
"typescript": "^3.8.3",
57-
"webpack": "4.42.1",
56+
"webpack": "4.43.0",
5857
"webpack-merge": "4.2.2"
5958
},
6059
"dependencies": {
61-
"chalk": "^3.0.0",
62-
"eval": "^0.1.4"
60+
"chalk": "^4.0.0",
61+
"eval": "^0.1.4",
62+
"exception-formatter": "^2.1.2"
6363
},
6464
"config": {
6565
"commitizen": {

renovate.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
{
2-
"extends": [
3-
"config:base"
4-
]
2+
"extends": ["config:base"]
53
}

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export = class HtmlRenderPlugin<Route extends BaseRoute = BaseRoute> {
8585
clientCompilations.every(
8686
(compilationStatus) => compilationStatus.isReady
8787
);
88-
const isRendererReady = () => isBuildReady() && renderer;
88+
const isRendererReady = () => isBuildReady() && Boolean(renderer);
8989

9090
const renderQueue: Array<() => void> = [];
9191
const flushRenderQueue = async () => {

tests/test-cases/legacy-api/__snapshots__/legacy-api.test.js.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ exports[`Use legacy api should render a HTML file 1`] = `
99
\\"route\\": \\"/\\",
1010
\\"extra\\": \\"extra-value\\",
1111
\\"assets\\": {
12-
\\"main\\": \\"client-main-a71824fcc3a1cbe5b3a9.js\\"
12+
\\"main\\": \\"client-main-2951ae76c7e3fa46fad4.js\\"
1313
}
1414
}
1515
]</code>

tests/test-cases/webpack-stats/__snapshots__/webpack-stats.test.js.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ exports[`Render WebpackStats should render a with asset names 1`] = `
44
Object {
55
"index.html": "{
66
\\"assets\\": {
7-
\\"main\\": \\"client-main-a71824fcc3a1cbe5b3a9.js\\"
7+
\\"main\\": \\"client-main-2951ae76c7e3fa46fad4.js\\"
88
}
99
}",
1010
}

0 commit comments

Comments
 (0)