Merge pull request #1116 from deepseek-harness/agent/fix-frontend-plugin-loader-dependency

fix(cli): point missing frontend dist at full build
This commit is contained in:
Ziya
2026-08-01 07:40:01 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -324,7 +324,7 @@ export class AppCLIEntry {
try {
return require.resolve('@deepseek-ai/dsh-frontend/dist/index.html')
} catch {
throw new Error('dsh: frontend dist not built; run pnpm --filter @deepseek-ai/dsh-frontend build first')
throw new Error('dsh: frontend dist not built; run pnpm run build from the repository root first')
}
}
}