@auto-engineer/component-implementor-react 1.109.0 → 1.110.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/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-test.log +3 -3
- package/.turbo/turbo-type-check.log +1 -1
- package/CHANGELOG.md +18 -0
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @auto-engineer/component-implementor-react@1.
|
|
2
|
+
> @auto-engineer/component-implementor-react@1.110.0 build /home/runner/work/auto-engineer/auto-engineer/packages/component-implementor-react
|
|
3
3
|
> tsc && tsx ../../scripts/fix-esm-imports.ts
|
|
4
4
|
|
|
5
5
|
Fixed ESM imports in dist/
|
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @auto-engineer/component-implementor-react@1.
|
|
2
|
+
> @auto-engineer/component-implementor-react@1.109.0 test /home/runner/work/auto-engineer/auto-engineer/packages/component-implementor-react
|
|
3
3
|
> vitest run --reporter=dot
|
|
4
4
|
|
|
5
5
|
|
|
@@ -9,6 +9,6 @@
|
|
|
9
9
|
|
|
10
10
|
[2m Test Files [22m [1m[32m12 passed[39m[22m[90m (12)[39m
|
|
11
11
|
[2m Tests [22m [1m[32m133 passed[39m[22m[90m (133)[39m
|
|
12
|
-
[2m Start at [22m 07:
|
|
13
|
-
[2m Duration [22m
|
|
12
|
+
[2m Start at [22m 07:43:57
|
|
13
|
+
[2m Duration [22m 11.79s[2m (transform 3.23s, setup 0ms, collect 12.29s, tests 762ms, environment 10ms, prepare 7.05s)[22m
|
|
14
14
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
> @auto-engineer/component-implementor-react@1.
|
|
2
|
+
> @auto-engineer/component-implementor-react@1.109.0 type-check /home/runner/work/auto-engineer/auto-engineer/packages/component-implementor-react
|
|
3
3
|
> tsc --noEmit
|
|
4
4
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @auto-engineer/component-implementor-react
|
|
2
2
|
|
|
3
|
+
## 1.110.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b98a16e`](https://github.com/BeOnAuto/auto-engineer/commit/b98a16e1021c333f5c7dfbdcf93a0f8593226290) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **server-generator-apollo-emmett**: add biome.json to server scaffold
|
|
8
|
+
- **checks**: add type checking command and related functionality
|
|
9
|
+
- **typical**: emit graph completion events from component settled handler
|
|
10
|
+
- **pipeline**: wire onEmit callback in pipeline-server for settled handlers
|
|
11
|
+
- **pipeline**: wire emit closure in v2-runtime-bridge handleOutputs
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [`acd9e95`](https://github.com/BeOnAuto/auto-engineer/commit/acd9e95c011a2a8617aaa3fe25761dd87fce4e36) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - **dev-server**: include process output in waitForHttp error messages
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [[`b98a16e`](https://github.com/BeOnAuto/auto-engineer/commit/b98a16e1021c333f5c7dfbdcf93a0f8593226290), [`acd9e95`](https://github.com/BeOnAuto/auto-engineer/commit/acd9e95c011a2a8617aaa3fe25761dd87fce4e36)]:
|
|
18
|
+
- @auto-engineer/message-bus@1.110.0
|
|
19
|
+
- @auto-engineer/model-factory@1.110.0
|
|
20
|
+
|
|
3
21
|
## 1.109.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"ai": "^6.0.0",
|
|
8
8
|
"debug": "^4.4.1",
|
|
9
|
-
"@auto-engineer/message-bus": "1.
|
|
10
|
-
"@auto-engineer/model-factory": "1.
|
|
9
|
+
"@auto-engineer/message-bus": "1.110.0",
|
|
10
|
+
"@auto-engineer/model-factory": "1.110.0"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"vitest": "^3.2.1"
|
|
14
14
|
},
|
|
15
|
-
"version": "1.
|
|
15
|
+
"version": "1.110.0",
|
|
16
16
|
"publishConfig": {
|
|
17
17
|
"access": "public"
|
|
18
18
|
},
|