@auto-engineer/information-architect 0.4.0 → 0.4.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.
@@ -1,5 +1,6 @@
1
-
2
- > @auto-engineer/information-architect@0.3.0 build /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
3
- > tsc && tsx ../../scripts/fix-esm-imports.ts && cp src/auto-ux-schema.json dist/
4
-
5
- Fixed ESM imports in dist/
1
+
2
+ 
3
+ > @auto-engineer/information-architect@0.4.1 build /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
4
+ > tsc && tsx ../../scripts/fix-esm-imports.ts && cp src/auto-ux-schema.json dist/
5
+
6
+ Fixed ESM imports in dist/
@@ -1,12 +1,12 @@
1
1
 
2
- > @auto-engineer/information-architect@0.2.0 format /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
2
+ > @auto-engineer/information-architect@0.4.0 format /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
3
3
  > prettier --write "**/*.{js,ts,json,md,yml,yaml}" --ignore-path ../../.prettierignore
4
4
 
5
- CHANGELOG.md 25ms (unchanged)
6
- package.json 18ms (unchanged)
7
- src/auto-ux-schema.json 11ms (unchanged)
8
- src/commands/generate-ia.ts 45ms (unchanged)
9
- src/generate-ia-schema.ts 9ms (unchanged)
5
+ CHANGELOG.md 18ms (unchanged)
6
+ package.json 14ms (unchanged)
7
+ src/auto-ux-schema.json 8ms (unchanged)
8
+ src/commands/generate-ia.ts 41ms (unchanged)
9
+ src/generate-ia-schema.ts 8ms (unchanged)
10
10
  src/index.ts 7ms (unchanged)
11
11
  src/types.ts 1ms (unchanged)
12
12
  tsconfig.json 1ms (unchanged)
@@ -1,4 +1,4 @@
1
1
 
2
- > @auto-engineer/information-architect@0.2.0 lint /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
2
+ > @auto-engineer/information-architect@0.4.0 lint /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
3
3
  > eslint 'src/**/*.ts' --max-warnings 0 --config ../../eslint.config.ts
4
4
 
@@ -1,6 +1,6 @@
1
1
 
2
2
  
3
- > @auto-engineer/information-architect@0.3.0 test /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
3
+ > @auto-engineer/information-architect@0.4.1 test /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
4
4
  > vitest run
5
5
 
6
6
  [?25l
@@ -1,5 +1,5 @@
1
1
 
2
2
  
3
- > @auto-engineer/information-architect@0.3.0 type-check /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
3
+ > @auto-engineer/information-architect@0.4.1 type-check /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
4
4
  > tsc --noEmit
5
5
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @auto-engineer/information-architect
2
2
 
3
+ ## 0.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Version bump to trigger builds
8
+ - Updated dependencies
9
+ - @auto-engineer/ai-gateway@0.4.1
10
+ - @auto-engineer/message-bus@0.3.1
11
+
3
12
  ## 0.4.0
4
13
 
5
14
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@auto-engineer/information-architect",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -18,8 +18,8 @@
18
18
  "access": "public"
19
19
  },
20
20
  "dependencies": {
21
- "@auto-engineer/ai-gateway": "^0.4.0",
22
- "@auto-engineer/message-bus": "^0.3.0"
21
+ "@auto-engineer/ai-gateway": "^0.4.1",
22
+ "@auto-engineer/message-bus": "^0.3.1"
23
23
  },
24
24
  "scripts": {
25
25
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts && cp src/auto-ux-schema.json dist/",