Skip to content

Commit e92d2e8

Browse files
committed
Fix the path
1 parent 314300c commit e92d2e8

4 files changed

Lines changed: 21 additions & 3 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,18 @@ jobs:
160160
args: [--no-frozen-lockfile]
161161
- args: [--global, aws-cdk, esbuild]
162162
163+
- name: Build (common)
164+
run: |
165+
pnpm --filter @llm-ts-example/common-core build
166+
pnpm --filter @llm-ts-example/common-backend-core build
167+
pnpm --filter @llm-ts-example/common-backend-langchain build
168+
169+
- name: Debug workspace links
170+
run: |
171+
pnpm list -r --depth 0
172+
pnpm why @llm-ts-example/common-backend-core
173+
pnpm why @llm-ts-example/common-backend-langchain
174+
163175
- name: deploy
164176
working-directory: ./agents/agent-ai-sdk
165177
run: |

agents/agent-ai-sdk/tsconfig.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@
2424
"skipLibCheck": true,
2525
"typeRoots": [
2626
"./node_modules/@types"
27-
]
27+
],
28+
"composite": true,
29+
"paths": {
30+
"@llm-ts-example/common-backend-core": ["../../common/backend/core"],
31+
}
2832
},
2933
"exclude": [
3034
"node_modules",

basic/cdk/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@
3838
],
3939
"composite": true,
4040
"paths": {
41-
"@llm-ts-example/common-backend": ["../../common/backend"],
41+
"@llm-ts-example/common-backend-core": ["../../common/backend/core"],
42+
"@llm-ts-example/common-backend-langchain": ["../../common/backend/langchain"],
4243
}
4344
},
4445
"exclude": [

rag/cdk/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
],
4242
"composite": true,
4343
"paths": {
44-
"@llm-ts-example/common-backend": ["../../common/backend"],
44+
"@llm-ts-example/common-backend-core": ["../../common/backend/core"],
45+
"@llm-ts-example/common-backend-langchain": ["../../common/backend/langchain"],
4546
}
4647
},
4748
"exclude": [

0 commit comments

Comments
 (0)