Hey team,
Just a heads-up — same issue as we saw in v3.9.3 is present in mediasoup-client v3.9.7.
The replaceVersion()
call is missing in the prepare
case of npm-scripts.mjs
.
To fix:
case 'prepare': {
buildTypescript({ force: false });
replaceVersion(); // <--- missing, should be added here
break;
}
Thanks!