@auto-engineer/generate-react-client 1.79.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,43 @@
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
+
21
+ ## 1.80.0
22
+
23
+ ### Minor Changes
24
+
25
+ - [`43082f0`](https://github.com/BeOnAuto/auto-engineer/commit/43082f08820c36d3f380b0e47b98263bc0287cf2) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **server-checks**: extract runLintCheck core logic
26
+ - **server-checks**: extract runTypeCheck core logic
27
+ - **server-checks**: extract findProjectRoot into shared module
28
+ - **app-implementer**: replace Message[] with ChatTurn in RefinementHistory
29
+ - **react-component-implementer**: replace Message[] with ChatTurn in RefinementHistory
30
+
31
+ ### Patch Changes
32
+
33
+ - [`4bdde8b`](https://github.com/BeOnAuto/auto-engineer/commit/4bdde8b4803a8e85234786e4d2e0cc227ad10859) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - Temporarily disabled existing tests in app and component generator specs for upcoming refactor
34
+
35
+ - [`3e7f02d`](https://github.com/BeOnAuto/auto-engineer/commit/3e7f02d79e078374c02c76ee7d261c76c35ce3be) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - format files with biome
36
+
37
+ - Updated dependencies [[`4bdde8b`](https://github.com/BeOnAuto/auto-engineer/commit/4bdde8b4803a8e85234786e4d2e0cc227ad10859), [`43082f0`](https://github.com/BeOnAuto/auto-engineer/commit/43082f08820c36d3f380b0e47b98263bc0287cf2), [`3e7f02d`](https://github.com/BeOnAuto/auto-engineer/commit/3e7f02d79e078374c02c76ee7d261c76c35ce3be)]:
38
+ - @auto-engineer/file-upload@1.80.0
39
+ - @auto-engineer/message-bus@1.80.0
40
+
3
41
  ## 1.79.0
4
42
 
5
43
  ### 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.79.0",
23
- "@auto-engineer/message-bus": "1.79.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.79.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",