@auto-engineer/server-implementer 1.110.1 → 1.110.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/package.json CHANGED
@@ -18,8 +18,8 @@
18
18
  "debug": "^4.3.4",
19
19
  "fast-glob": "^3.3.3",
20
20
  "vite": "^5.4.1",
21
- "@auto-engineer/model-factory": "1.110.1",
22
- "@auto-engineer/message-bus": "1.110.1"
21
+ "@auto-engineer/model-factory": "1.110.2",
22
+ "@auto-engineer/message-bus": "1.110.2"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/fs-extra": "^11.0.4",
@@ -29,9 +29,9 @@
29
29
  "glob": "^11.0.3",
30
30
  "tsx": "^4.20.3",
31
31
  "typescript": "^5.8.3",
32
- "@auto-engineer/cli": "1.110.1"
32
+ "@auto-engineer/cli": "1.110.2"
33
33
  },
34
- "version": "1.110.1",
34
+ "version": "1.110.2",
35
35
  "scripts": {
36
36
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
37
37
  "test": "vitest run --reporter=dot",
@@ -103,7 +103,7 @@ function extractCodeBlock(text: string): string {
103
103
  }
104
104
 
105
105
  async function loadContextFiles(sliceDir: string): Promise<Record<string, string>> {
106
- const files = await fg(['*.ts'], { cwd: sliceDir });
106
+ const files = await fg(['*.ts', '!*.specs.ts'], { cwd: sliceDir });
107
107
  const context: Record<string, string> = {};
108
108
  for (const file of files) {
109
109
  const absPath = path.join(sliceDir, file);