@auto-engineer/generate-react-client 1.54.2 → 1.54.3

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,17 @@
1
1
  # @auto-engineer/generate-react-client
2
2
 
3
+ ## 1.54.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`44825c5`](https://github.com/BeOnAuto/auto-engineer/commit/44825c52296b837f664889935d5ddaaf49e58d6f) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - Adjusted HMR stability threshold and poll interval for improved hot module replacement reliability in the React client generator
8
+
9
+ - [`a52ef0d`](https://github.com/BeOnAuto/auto-engineer/commit/a52ef0d8682e0b521d8414b8627afe191c780a7b) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **root**: restore build step
10
+ - **global**: version packages
11
+ - Updated dependencies [[`44825c5`](https://github.com/BeOnAuto/auto-engineer/commit/44825c52296b837f664889935d5ddaaf49e58d6f), [`a52ef0d`](https://github.com/BeOnAuto/auto-engineer/commit/a52ef0d8682e0b521d8414b8627afe191c780a7b)]:
12
+ - @auto-engineer/file-upload@1.54.3
13
+ - @auto-engineer/message-bus@1.54.3
14
+
3
15
  ## 1.54.2
4
16
 
5
17
  ### Patch Changes
@@ -54,8 +54,8 @@ const config: StorybookConfig = {
54
54
  // Wait for files to stop being written before triggering HMR
55
55
  // This prevents continuous rebuild loops when multiple agents write files
56
56
  awaitWriteFinish: {
57
- stabilityThreshold: 3000, // Wait 1.5s of no changes before rebuild
58
- pollInterval: 1000,
57
+ stabilityThreshold: 1500, // Wait 1.5s of no changes before rebuild
58
+ pollInterval: 500,
59
59
  },
60
60
  },
61
61
  };
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.54.2",
23
- "@auto-engineer/message-bus": "1.54.2"
22
+ "@auto-engineer/file-upload": "1.54.3",
23
+ "@auto-engineer/message-bus": "1.54.3"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/debug": "^4.1.12"
27
27
  },
28
- "version": "1.54.2",
28
+ "version": "1.54.3",
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",