@roots/bud-client 2023.7.6-734 → 2023.7.18-1836

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roots/bud-client",
3
- "version": "2023.7.6-734",
3
+ "version": "2023.7.18-1836",
4
4
  "description": "Client scripts for @roots/bud",
5
5
  "engines": {
6
6
  "node": ">=16"
@@ -61,9 +61,9 @@
61
61
  "types": "./lib/index.d.ts",
62
62
  "module": "./lib/index.mjs",
63
63
  "devDependencies": {
64
- "@roots/bud": "2023.7.6-734",
64
+ "@roots/bud": "2023.7.18-1836",
65
65
  "@skypack/package-check": "0.2.2",
66
- "@types/node": "18.16.18",
66
+ "@types/node": "18.16.19",
67
67
  "@types/webpack-env": "1.18.1"
68
68
  },
69
69
  "dependencies": {
package/src/hot/client.ts CHANGED
@@ -83,10 +83,11 @@ export const client = async (
83
83
  * Webpack HMR error handler
84
84
  */
85
85
  const onErrored = (error: any) => {
86
- window.bud.controllers.map(controller =>
87
- controller?.update({
88
- errors: [error],
89
- }),
86
+ window.bud.controllers.map(
87
+ controller =>
88
+ controller?.update({
89
+ errors: [error],
90
+ }),
90
91
  )
91
92
  }
92
93