@auto-engineer/cli 1.9.0 → 1.11.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # @auto-engineer/cli
2
2
 
3
+ ## 1.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`94f3151`](https://github.com/BeOnAuto/auto-engineer/commit/94f315181e69e190f84ba06871b27591e27771c2) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added a lightweight schema subpath export for the narrative package, allowing consumers to import Zod schemas and TypeScript types without pulling in heavy dependencies like typescript, prettier, or graphql
8
+
9
+ - [`afd1cd2`](https://github.com/BeOnAuto/auto-engineer/commit/afd1cd28412d12ba7c29ba133fdf57616cf42370) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **packages/frontend-implementer**: updates implementation prompt
10
+ - **global**: version packages
11
+ - **global**: add changeset
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`94f3151`](https://github.com/BeOnAuto/auto-engineer/commit/94f315181e69e190f84ba06871b27591e27771c2), [`afd1cd2`](https://github.com/BeOnAuto/auto-engineer/commit/afd1cd28412d12ba7c29ba133fdf57616cf42370)]:
16
+ - @auto-engineer/file-store@1.11.0
17
+ - @auto-engineer/narrative@1.11.0
18
+ - @auto-engineer/pipeline@1.11.0
19
+
20
+ ## 1.10.0
21
+
22
+ ### Minor Changes
23
+
24
+ - [`f3e6b55`](https://github.com/BeOnAuto/auto-engineer/commit/f3e6b5566b2ab37e4b945bd04168b994f394b33b) Thanks [@osamanar](https://github.com/osamanar)! - - Updated the implementation prompt for the frontend implementer to improve code generation quality
25
+
26
+ - [`3480c66`](https://github.com/BeOnAuto/auto-engineer/commit/3480c6658781048289c14ee58636825126334d1c) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **packages/information-architect**: adds template generation to FE app generation
27
+ - **global**: version packages
28
+ - **global**: add changeset
29
+ - **global**: fix pnpm lock file
30
+ - **global**: add changeset
31
+
32
+ ### Patch Changes
33
+
34
+ - Updated dependencies [[`f3e6b55`](https://github.com/BeOnAuto/auto-engineer/commit/f3e6b5566b2ab37e4b945bd04168b994f394b33b), [`3480c66`](https://github.com/BeOnAuto/auto-engineer/commit/3480c6658781048289c14ee58636825126334d1c)]:
35
+ - @auto-engineer/file-store@1.10.0
36
+ - @auto-engineer/narrative@1.10.0
37
+ - @auto-engineer/pipeline@1.10.0
38
+
3
39
  ## 1.9.0
4
40
 
5
41
  ### Minor Changes
package/package.json CHANGED
@@ -40,15 +40,15 @@
40
40
  "node-fetch": "^3.3.2",
41
41
  "ora": "^8.0.1",
42
42
  "socket.io": "^4.7.5",
43
- "@auto-engineer/file-store": "1.9.0",
44
- "@auto-engineer/pipeline": "1.9.0",
45
- "@auto-engineer/narrative": "1.9.0"
43
+ "@auto-engineer/pipeline": "1.11.0",
44
+ "@auto-engineer/file-store": "1.11.0",
45
+ "@auto-engineer/narrative": "1.11.0"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/node": "^22.0.0",
49
49
  "socket.io-client": "^4.8.3"
50
50
  },
51
- "version": "1.9.0",
51
+ "version": "1.11.0",
52
52
  "scripts": {
53
53
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts && chmod +x dist/bin/auto.js",
54
54
  "test": "vitest run --reporter=dot",