@auto-engineer/dev-server 1.8.0 → 1.10.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/CHANGELOG.md +38 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# @auto-engineer/dev-server
|
|
2
2
|
|
|
3
|
+
## 1.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`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
|
|
8
|
+
|
|
9
|
+
- [`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
|
|
10
|
+
- **global**: version packages
|
|
11
|
+
- **global**: add changeset
|
|
12
|
+
- **global**: fix pnpm lock file
|
|
13
|
+
- **global**: add changeset
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [[`f3e6b55`](https://github.com/BeOnAuto/auto-engineer/commit/f3e6b5566b2ab37e4b945bd04168b994f394b33b), [`3480c66`](https://github.com/BeOnAuto/auto-engineer/commit/3480c6658781048289c14ee58636825126334d1c)]:
|
|
18
|
+
- @auto-engineer/cli@1.10.0
|
|
19
|
+
- @auto-engineer/message-bus@1.10.0
|
|
20
|
+
|
|
21
|
+
## 1.9.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- [`9cca67b`](https://github.com/BeOnAuto/auto-engineer/commit/9cca67b7c85953d297a632a268829cc18a168e3a) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **cli**: implement delegation pattern for FileSyncer reset
|
|
26
|
+
- **global**: version packages
|
|
27
|
+
- **global**: add changeset
|
|
28
|
+
- **global**: update ketchup settings
|
|
29
|
+
- **cli**: update ketchup plan with completed burst
|
|
30
|
+
|
|
31
|
+
- [#43](https://github.com/BeOnAuto/auto-engineer/pull/43) [`af76242`](https://github.com/BeOnAuto/auto-engineer/commit/af762423f8adfad0796f2f3a6483fb931c7b0bf1) Thanks [@osamanar](https://github.com/osamanar)! - - Added template generation capability to frontend app generation in the information architect package
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- [#43](https://github.com/BeOnAuto/auto-engineer/pull/43) [`31aab4f`](https://github.com/BeOnAuto/auto-engineer/commit/31aab4f3114d6fd8f60fa2239fff9d567a78e321) Thanks [@osamanar](https://github.com/osamanar)! - - Fixed package manager lock file to ensure consistent dependency installation
|
|
36
|
+
|
|
37
|
+
- Updated dependencies [[`31aab4f`](https://github.com/BeOnAuto/auto-engineer/commit/31aab4f3114d6fd8f60fa2239fff9d567a78e321), [`9cca67b`](https://github.com/BeOnAuto/auto-engineer/commit/9cca67b7c85953d297a632a268829cc18a168e3a), [`af76242`](https://github.com/BeOnAuto/auto-engineer/commit/af762423f8adfad0796f2f3a6483fb931c7b0bf1)]:
|
|
38
|
+
- @auto-engineer/cli@1.9.0
|
|
39
|
+
- @auto-engineer/message-bus@1.9.0
|
|
40
|
+
|
|
3
41
|
## 1.8.0
|
|
4
42
|
|
|
5
43
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -18,16 +18,16 @@
|
|
|
18
18
|
"chokidar": "^3.6.0",
|
|
19
19
|
"debug": "^4.4.1",
|
|
20
20
|
"execa": "^9.5.2",
|
|
21
|
-
"@auto-engineer/
|
|
22
|
-
"@auto-engineer/
|
|
21
|
+
"@auto-engineer/message-bus": "1.10.0",
|
|
22
|
+
"@auto-engineer/cli": "1.10.0"
|
|
23
23
|
},
|
|
24
24
|
"publishConfig": {
|
|
25
25
|
"access": "public"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@auto-engineer/cli": "1.
|
|
28
|
+
"@auto-engineer/cli": "1.10.0"
|
|
29
29
|
},
|
|
30
|
-
"version": "1.
|
|
30
|
+
"version": "1.10.0",
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
|
|
33
33
|
"test": "vitest run --reporter=dot",
|