Skip to content

Commit e8a5400

Browse files
fix: CI blockers from CAAMP/LAFS monorepo merge
1. Remove nested packages/caamp/biome.json — conflicts with root biome config, causing "nested root configuration" error in CI biome step. 2. Add schemas/**/*.json to packages/lafs/tsconfig.build.json include — LAFS source imports JSON schemas from ../schemas/v1/ which weren't in the file list, causing TS6307 errors. 3. Add packages/lafs and packages/caamp to root tsconfig.json project references — they were missing after monorepo merge. NOTE: CAAMP's tsup DTS build is still broken (can't find src/commands/ files during declaration generation). This blocks core's tsc because @cleocode/caamp has no .d.ts files. Needs CAAMP merge author to fix the tsup config. Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
1 parent 6c9c900 commit e8a5400

3 files changed

Lines changed: 3 additions & 13 deletions

File tree

packages/caamp/biome.json

Lines changed: 0 additions & 12 deletions
This file was deleted.

packages/lafs/tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"compilerOptions": {
44
"noEmit": false
55
},
6-
"include": ["src/**/*.ts"],
6+
"include": ["src/**/*.ts", "schemas/**/*.json"],
77
"exclude": ["dist", "node_modules", "tests", "examples"]
88
}

tsconfig.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
},
2020
"references": [
2121
{ "path": "./packages/contracts" },
22+
{ "path": "./packages/lafs" },
23+
{ "path": "./packages/caamp" },
2224
{ "path": "./packages/core" },
2325
{ "path": "./packages/adapters" },
2426
{ "path": "./packages/cleo" }

0 commit comments

Comments
 (0)