@auto-engineer/generate-react-client 1.80.0 → 1.81.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @auto-engineer/generate-react-client
2
2
 
3
+ ## 1.81.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`9e5108b`](https://github.com/BeOnAuto/auto-engineer/commit/9e5108b25fc9b9ede6a4b51e450ac9c85e3e40c4) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **server-checks**: extract runLintCheck core logic
8
+ - **server-checks**: extract runTypeCheck core logic
9
+ - **server-checks**: extract findProjectRoot into shared module
10
+ - format files with biome
11
+ - **app-implementer**: replace Message[] with ChatTurn in RefinementHistory
12
+
13
+ ### Patch Changes
14
+
15
+ - [`f225ede`](https://github.com/BeOnAuto/auto-engineer/commit/f225edec208bb5bce29869c676e7cca35f5b0958) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - Added Hot Module Replacement (HMR) configuration to the generated React client's Vite server settings
16
+
17
+ - Updated dependencies [[`9e5108b`](https://github.com/BeOnAuto/auto-engineer/commit/9e5108b25fc9b9ede6a4b51e450ac9c85e3e40c4), [`f225ede`](https://github.com/BeOnAuto/auto-engineer/commit/f225edec208bb5bce29869c676e7cca35f5b0958)]:
18
+ - @auto-engineer/file-upload@1.81.0
19
+ - @auto-engineer/message-bus@1.81.0
20
+
3
21
  ## 1.80.0
4
22
 
5
23
  ### Minor Changes
@@ -78,6 +78,12 @@ export default defineConfig({
78
78
  host: '0.0.0.0',
79
79
  port: 8080,
80
80
  allowedHosts: true,
81
+ hmr: {
82
+ // Let the browser determine the WebSocket host from the page URL
83
+ // instead of hardcoding localhost:8080
84
+ host: undefined,
85
+ clientPort: 80,
86
+ },
81
87
  },
82
88
  test: {
83
89
  globals: true,
package/package.json CHANGED
@@ -19,13 +19,13 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "debug": "^4.4.1",
22
- "@auto-engineer/file-upload": "1.80.0",
23
- "@auto-engineer/message-bus": "1.80.0"
22
+ "@auto-engineer/file-upload": "1.81.0",
23
+ "@auto-engineer/message-bus": "1.81.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/debug": "^4.1.12"
27
27
  },
28
- "version": "1.80.0",
28
+ "version": "1.81.0",
29
29
  "scripts": {
30
30
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts && cp -r starter dist/",
31
31
  "test-cli": "tsx test-cli.ts",