@auto-engineer/frontend-checks 0.6.0 → 0.6.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/CHANGELOG.md +17 -1
- package/README.md +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @auto-engineer/frontend-checks
|
|
2
2
|
|
|
3
|
+
## 0.6.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- renamed packages
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @auto-engineer/message-bus@0.5.2
|
|
10
|
+
|
|
11
|
+
## 0.6.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- version bump for testihng
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @auto-engineer/message-bus@0.5.1
|
|
18
|
+
|
|
3
19
|
## 0.6.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -32,7 +48,7 @@
|
|
|
32
48
|
|
|
33
49
|
### Patch Changes
|
|
34
50
|
|
|
35
|
-
- Add debug logging throughout packages for better debugging and issue tracking. Fix MCP server hanging issue in frontend-
|
|
51
|
+
- Add debug logging throughout packages for better debugging and issue tracking. Fix MCP server hanging issue in frontend-implementer by ensuring it only starts when run directly, not when imported as a module. The debug logs can be enabled by setting DEBUG environment variable (e.g., DEBUG=frontend-checks:_,frontend-impl:_)
|
|
36
52
|
|
|
37
53
|
## 0.4.5
|
|
38
54
|
|
package/README.md
CHANGED
|
@@ -326,8 +326,8 @@ jobs:
|
|
|
326
326
|
|
|
327
327
|
Works with the Auto Engineer ecosystem:
|
|
328
328
|
|
|
329
|
-
- @auto-engineer/react-graphql
|
|
330
|
-
- @auto-engineer/frontend-
|
|
329
|
+
- @auto-engineer/frontend-generator-react-graphql: Validates generated React applications
|
|
330
|
+
- @auto-engineer/frontend-implementer: Checks AI-implemented code quality
|
|
331
331
|
- @auto-engineer/design-system-importer: Validates design system usage consistency
|
|
332
332
|
- @auto-engineer/information-architect: Validates implementation against IA specifications
|
|
333
333
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@auto-engineer/frontend-checks",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"CHANGELOG.md"
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@auto-engineer/message-bus": "^0.5.
|
|
19
|
+
"@auto-engineer/message-bus": "^0.5.2",
|
|
20
20
|
"debug": "^4.4.1",
|
|
21
21
|
"dotenv": "^16.6.1",
|
|
22
22
|
"playwright": "^1.54.1",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"access": "public"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@auto-engineer/cli": "^0.7.
|
|
29
|
+
"@auto-engineer/cli": "^0.7.2"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
|