@auto-engineer/information-architect 1.27.0 → 1.28.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 +1 -1
- package/.turbo/turbo-type-check.log +1 -1
- package/CHANGELOG.md +19 -0
- package/package.json +5 -5
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @auto-engineer/information-architect@1.
|
|
2
|
+
> @auto-engineer/information-architect@1.27.0 build /home/runner/work/auto-engineer/auto-engineer/packages/information-architect
|
|
3
3
|
> tsc && tsx ../../scripts/fix-esm-imports.ts && cp src/auto-ux-schema.json dist/
|
|
4
4
|
|
|
5
5
|
Fixed ESM imports in dist/
|
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @auto-engineer/information-architect@1.
|
|
2
|
+
> @auto-engineer/information-architect@1.27.0 test /home/runner/work/auto-engineer/auto-engineer/packages/information-architect
|
|
3
3
|
> vitest run --reporter=dot
|
|
4
4
|
|
|
5
5
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
> @auto-engineer/information-architect@1.
|
|
2
|
+
> @auto-engineer/information-architect@1.27.0 type-check /home/runner/work/auto-engineer/auto-engineer/packages/information-architect
|
|
3
3
|
> tsc --noEmit
|
|
4
4
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @auto-engineer/information-architect
|
|
2
2
|
|
|
3
|
+
## 1.28.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`251372b`](https://github.com/BeOnAuto/auto-engineer/commit/251372b0731f95f5ea38413bc40f6cab01fb7342) Thanks [@osamanar](https://github.com/osamanar)! - - Fixed issues with the React component implementer to improve reliability
|
|
8
|
+
|
|
9
|
+
- [`817d4a3`](https://github.com/BeOnAuto/auto-engineer/commit/817d4a386b205fc28da93fca6784b9ce9ec81990) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **react-component-implementer**: fix import errors
|
|
10
|
+
- **react-component-implementer**: fix import errors
|
|
11
|
+
- **typical**: improve fast mode detection and enhance command handler structure
|
|
12
|
+
- **global**: version packages
|
|
13
|
+
- **job-graph-processor**: standardize event naming and improve documentation
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [[`251372b`](https://github.com/BeOnAuto/auto-engineer/commit/251372b0731f95f5ea38413bc40f6cab01fb7342), [`817d4a3`](https://github.com/BeOnAuto/auto-engineer/commit/817d4a386b205fc28da93fca6784b9ce9ec81990)]:
|
|
18
|
+
- @auto-engineer/message-bus@1.28.0
|
|
19
|
+
- @auto-engineer/model-factory@1.28.0
|
|
20
|
+
- @auto-engineer/narrative@1.28.0
|
|
21
|
+
|
|
3
22
|
## 1.27.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"ai": "^6.0.0",
|
|
17
17
|
"fast-glob": "^3.3.2",
|
|
18
|
-
"@auto-engineer/
|
|
19
|
-
"@auto-engineer/
|
|
20
|
-
"@auto-engineer/
|
|
18
|
+
"@auto-engineer/message-bus": "1.28.0",
|
|
19
|
+
"@auto-engineer/narrative": "1.28.0",
|
|
20
|
+
"@auto-engineer/model-factory": "1.28.0"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@auto-engineer/cli": "1.
|
|
23
|
+
"@auto-engineer/cli": "1.28.0"
|
|
24
24
|
},
|
|
25
|
-
"version": "1.
|
|
25
|
+
"version": "1.28.0",
|
|
26
26
|
"scripts": {
|
|
27
27
|
"build": "tsc && tsx ../../scripts/fix-esm-imports.ts && cp src/auto-ux-schema.json dist/",
|
|
28
28
|
"test": "vitest run --reporter=dot",
|