@auto-engineer/information-architect 0.9.1 → 0.9.2
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 +12 -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.2 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,17 @@
|
|
|
1
1
|
# @auto-engineer/information-architect
|
|
2
2
|
|
|
3
|
+
## 0.9.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`1060b10`](https://github.com/SamHatoum/auto-engineer/commit/1060b103eb8b99bc3b1f7ed29bdede9d3b0b445b) Thanks [@SamHatoum](https://github.com/SamHatoum)! - test: verify GitHub releases creation works in v0.9.2
|
|
8
|
+
|
|
9
|
+
This changeset tests that the createGithubReleases functionality works properly after our configuration fixes. Should create GitHub releases and tags when published.
|
|
10
|
+
|
|
11
|
+
- Updated dependencies []:
|
|
12
|
+
- @auto-engineer/ai-gateway@0.9.2
|
|
13
|
+
- @auto-engineer/message-bus@0.9.2
|
|
14
|
+
|
|
3
15
|
## 0.9.1
|
|
4
16
|
|
|
5
17
|
### Patch 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.2",
|
|
18
|
+
"@auto-engineer/message-bus": "0.9.2"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@auto-engineer/cli": "0.9.
|
|
21
|
+
"@auto-engineer/cli": "0.9.2"
|
|
22
22
|
},
|
|
23
|
-
"version": "0.9.
|
|
23
|
+
"version": "0.9.2",
|
|
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",
|