@auto-engineer/generate-react-client 1.115.0 → 1.117.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 +31 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @auto-engineer/generate-react-client
|
|
2
2
|
|
|
3
|
+
## 1.117.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`ffd35da`](https://github.com/BeOnAuto/auto-engineer/commit/ffd35da5602a90907947c0208da9fbd2fb12cbd3) Thanks [@osamanar](https://github.com/osamanar)! - - Improved the UI generation pipeline for better component output
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [`40f03c3`](https://github.com/BeOnAuto/auto-engineer/commit/40f03c3e4c468517d917d001bc0ae2fcf4a95a8a) Thanks [@osamanar](https://github.com/osamanar)! - - Fixed package publishing issue for the ADK Claude Code bridge package
|
|
12
|
+
|
|
13
|
+
- [`cb406c3`](https://github.com/BeOnAuto/auto-engineer/commit/cb406c3c431ea34146e223d5e1f174c9259256ae) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **packages/adk-claude-code-bridge**: adds adk claude code as a package
|
|
14
|
+
- **global**: version packages
|
|
15
|
+
- Updated dependencies [[`40f03c3`](https://github.com/BeOnAuto/auto-engineer/commit/40f03c3e4c468517d917d001bc0ae2fcf4a95a8a), [`ffd35da`](https://github.com/BeOnAuto/auto-engineer/commit/ffd35da5602a90907947c0208da9fbd2fb12cbd3), [`cb406c3`](https://github.com/BeOnAuto/auto-engineer/commit/cb406c3c431ea34146e223d5e1f174c9259256ae)]:
|
|
16
|
+
- @auto-engineer/file-upload@1.117.0
|
|
17
|
+
- @auto-engineer/message-bus@1.117.0
|
|
18
|
+
|
|
19
|
+
## 1.116.0
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- [`e8a852c`](https://github.com/BeOnAuto/auto-engineer/commit/e8a852c030a4c1ad9f20d4f00b33bf8291da84da) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **packages/adk-claude-code-bridge**: adds adk claude code bridge
|
|
24
|
+
- **global**: version packages
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- [`24fbfc9`](https://github.com/BeOnAuto/auto-engineer/commit/24fbfc9af6f4de2f402fa0b834d4ef2162af76c5) Thanks [@osamanar](https://github.com/osamanar)! - - Added ADK Claude Code bridge as a new package
|
|
29
|
+
|
|
30
|
+
- Updated dependencies [[`24fbfc9`](https://github.com/BeOnAuto/auto-engineer/commit/24fbfc9af6f4de2f402fa0b834d4ef2162af76c5), [`e8a852c`](https://github.com/BeOnAuto/auto-engineer/commit/e8a852c030a4c1ad9f20d4f00b33bf8291da84da)]:
|
|
31
|
+
- @auto-engineer/file-upload@1.116.0
|
|
32
|
+
- @auto-engineer/message-bus@1.116.0
|
|
33
|
+
|
|
3
34
|
## 1.115.0
|
|
4
35
|
|
|
5
36
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"debug": "^4.4.1",
|
|
22
|
-
"@auto-engineer/
|
|
23
|
-
"@auto-engineer/
|
|
22
|
+
"@auto-engineer/message-bus": "1.117.0",
|
|
23
|
+
"@auto-engineer/file-upload": "1.117.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/debug": "^4.1.12"
|
|
27
27
|
},
|
|
28
|
-
"version": "1.
|
|
28
|
+
"version": "1.117.0",
|
|
29
29
|
"scripts": {
|
|
30
|
-
"build": "tsc && tsx ../../scripts/fix-esm-imports.ts && cp -r starter dist/",
|
|
30
|
+
"build": "tsc && tsx ../../scripts/fix-esm-imports.ts && rm -rf dist/starter && cp -r starter dist/",
|
|
31
31
|
"test-cli": "tsx test-cli.ts",
|
|
32
32
|
"test": "vitest run --reporter=dot",
|
|
33
33
|
"test:coverage": "vitest run --coverage",
|