You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's an open PR for this I believe. The following fixed it for me in the meantime:
// .pnpmfile.cjsmodule.exports={hooks: {readPackage(pkg){if(pkg.name==='livekit-server-sdk'){// the problem is outlined here https://github.com/livekit/node-sdks/pull/351// Check if the devDependencies contains "@bufbuild/protobuf"if(pkg.dependencies&&!pkg.dependencies['@bufbuild/protobuf']){// Add it to dependenciespkg.dependencies['@bufbuild/protobuf']='^1.7.2';}}returnpkg;},},};
node-sdks/packages/livekit-server-sdk/src/SipClient.ts
Line 4 in 12ca25c
When starting an Agent(js) Node, Deno and Bun fail on this import line.
Removing it solves the issue.
The import seems to be a mistake by the last commit, since it has no purpose afaik.
The text was updated successfully, but these errors were encountered: