@auto-engineer/generate-react-client 1.36.2 → 1.36.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,19 @@
1
1
  # @auto-engineer/generate-react-client
2
2
 
3
+ ## 1.36.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`318c6d0`](https://github.com/BeOnAuto/auto-engineer/commit/318c6d06322ecdc912ec4b00f0deac5c977dbe6f) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **dev-server**: pnpm frozen files
8
+ - **dev-server**: add --no-frozen-lockfile to all pnpm install commands
9
+ - **global**: version packages
10
+ - **global**: version packages
11
+
12
+ - [`06ac197`](https://github.com/BeOnAuto/auto-engineer/commit/06ac197d20977a5cd0c282fa0f768bd32155b365) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - Increased retry delays for Storybook connection to improve reliability when waiting for the dev server to become available
13
+
14
+ - Updated dependencies [[`318c6d0`](https://github.com/BeOnAuto/auto-engineer/commit/318c6d06322ecdc912ec4b00f0deac5c977dbe6f), [`06ac197`](https://github.com/BeOnAuto/auto-engineer/commit/06ac197d20977a5cd0c282fa0f768bd32155b365)]:
15
+ - @auto-engineer/message-bus@1.36.3
16
+
3
17
  ## 1.36.2
4
18
 
5
19
  ### Patch Changes
@@ -52,7 +52,7 @@ interface IndexJson {
52
52
  }
53
53
 
54
54
  async function checkStorybookRunning(port: number): Promise<void> {
55
- const delays = [5000, 10000, 20000];
55
+ const delays = [5000, 10000, 20000, 30000, 60000];
56
56
  for (let attempt = 0; attempt <= delays.length; attempt++) {
57
57
  try {
58
58
  const response = await fetch(`http://localhost:${port}`);
@@ -66,7 +66,7 @@ async function checkStorybookRunning(port: number): Promise<void> {
66
66
  );
67
67
  }
68
68
  console.log(
69
- `Waiting for Storybook on port ${port}... (attempt ${attempt + 1}/3, retrying in ${delays[attempt] / 1000}s)`,
69
+ `Waiting for Storybook on port ${port}... (attempt ${attempt + 1}/${delays.length}, retrying in ${delays[attempt] / 1000}s)`,
70
70
  );
71
71
  await new Promise((r) => setTimeout(r, delays[attempt]));
72
72
  }
package/package.json CHANGED
@@ -19,12 +19,12 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "debug": "^4.4.1",
22
- "@auto-engineer/message-bus": "1.36.2"
22
+ "@auto-engineer/message-bus": "1.36.3"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/debug": "^4.1.12"
26
26
  },
27
- "version": "1.36.2",
27
+ "version": "1.36.3",
28
28
  "scripts": {
29
29
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts && cp -r starter dist/",
30
30
  "test-cli": "tsx test-cli.ts",