@auto-engineer/information-architect 0.9.0 → 0.9.1
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/CHANGELOG.md +14 -0
- package/package.json +4 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @auto-engineer/information-architect@0.9.
|
|
2
|
+
> @auto-engineer/information-architect@0.9.1 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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @auto-engineer/information-architect
|
|
2
2
|
|
|
3
|
+
## 0.9.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`e789ce5`](https://github.com/SamHatoum/auto-engineer/commit/e789ce5edd6d94987cf431d674b9a85b942bc396) Thanks [@SamHatoum](https://github.com/SamHatoum)! - fix: remove unused import causing lint failure in CI
|
|
8
|
+
|
|
9
|
+
- [`70e5920`](https://github.com/SamHatoum/auto-engineer/commit/70e59201f8fbbc5c6f454bab7d2deb738f6e8ee6) Thanks [@SamHatoum](https://github.com/SamHatoum)! - test: trigger release to verify fixed GitHub workflow
|
|
10
|
+
|
|
11
|
+
This is a test changeset to verify that the GitHub workflow now correctly creates tags and releases after fixing the conflicting tag creation logic.
|
|
12
|
+
|
|
13
|
+
- Updated dependencies []:
|
|
14
|
+
- @auto-engineer/ai-gateway@0.9.1
|
|
15
|
+
- @auto-engineer/message-bus@0.9.1
|
|
16
|
+
|
|
3
17
|
## 0.9.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"fast-glob": "^3.3.2",
|
|
17
|
-
"@auto-engineer/ai-gateway": "0.9.
|
|
18
|
-
"@auto-engineer/message-bus": "0.9.
|
|
17
|
+
"@auto-engineer/ai-gateway": "0.9.1",
|
|
18
|
+
"@auto-engineer/message-bus": "0.9.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@auto-engineer/cli": "0.9.
|
|
21
|
+
"@auto-engineer/cli": "0.9.1"
|
|
22
22
|
},
|
|
23
|
-
"version": "0.9.
|
|
23
|
+
"version": "0.9.1",
|
|
24
24
|
"scripts": {
|
|
25
25
|
"build": "tsc && tsx ../../scripts/fix-esm-imports.ts && cp src/auto-ux-schema.json dist/",
|
|
26
26
|
"test": "vitest run --reporter=dot",
|