build & tests tools in hls.js #5792
-
Hello, I'm interested in SDK development and I'm studying build and test tools. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Rollup provides the cleanest JavaScript output without adding any additional boiler plate for module import/export. We recently switched from webpack to rollup with #5299. Babel does exactly what we need - I don't see any compelling reason to change. I don't think SWC was even an option when we adopted Babel. The test framework and tools are maybe not the slickest, but they still work, and are easier to maintain than replace.
After running unit tests with |
Beta Was this translation helpful? Give feedback.
-
Thank you for kind reply!!
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
Rollup provides the cleanest JavaScript output without adding any additional boiler plate for module import/export. We recently switched from webpack to rollup with #5299.
Babel does exactly what we need - I don't see any compelling reason to change. I don't think SWC was even an option when we adopted Babel.
The test framework and tools are maybe not the slickest, but they still work, and are easier to maintain than replace.
After running unit tes…