AxisCommunications / media-stream-library-js

JavaScript library to handle media streams on the command line (Node.js) and in the browser.
MIT License
296 stars 100 forks source link

Replace `debug` with `tslog` #992

Open steabert opened 2 months ago

steabert commented 2 months ago

The debug package still relies on CommonJS (either itself or in its dependencies), which causes issues when generating ESM for e.g. Node.js.

We should replace it with either a custom logger or e.g. tslog:

Solves #990