chore: add static version of sdk in client#994
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. 2 Skipped Deployments
|
WalkthroughThe CRISP client example's build configuration was simplified: the preparatory SDK build step was removed and the package now depends on a pinned SDK version ( Changes
Sequence Diagram(s)sequenceDiagram
participant Dev as Developer
participant ClientPkg as CRISP Client package.json
participant TS as TypeScript (tsc)
participant Vite as Vite build
note right of ClientPkg: Old flow
Dev->>ClientPkg: run `pnpm build` (old)
ClientPkg->>ClientPkg: run `pnpm build:sdk`
ClientPkg->>TS: run `tsc`
ClientPkg->>Vite: run `vite build`
rect rgba(100,200,150,0.08)
note right of ClientPkg: New flow (changed)
Dev->>ClientPkg: run `pnpm build` (new)
ClientPkg->>TS: run `tsc`
ClientPkg->>Vite: run `vite build`
end
Estimated code review effort🎯 2 (Simple) | ⏱️ ~5–15 minutes
Possibly related PRs
Suggested reviewers
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
✅ Files skipped from review due to trivial changes (1)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (7)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Summary by CodeRabbit
Refactor
Chores