Matteo Sacchetto
Matteo Sacchetto
I encountered the same issue while using the ESM import syntax ```javascript import caxa from 'caxa'; await caxa(...) ``` results it ERROR: `TypeError: caxa is not a function` The workaround...
I'm not that familiar with writing custom actions, but I was able to build arm and amr64 executables using docker. Here is a snippet to do so for arm: ```yaml...
Hi, I'm experiencing a similar issue. Here is my setup: - Koel running in docker (armv7l) behind traefikv2 as reverse proxy - SSL is active - The certificate is trusted...
Ok, so I think I got what the OP meant The question is: "Why, in `reduce` functions (or similars) are you returning a new accumulator and destructuring the previous one,...
Based on a preliminary analysis, the second version seems to be faster by 2x or more, but I will try to write a better benchmark to validate so
Ok, so I have tried to put together a simple test which should kind of accurate comparing the two alternatives. If anyone is interested [here is a link to the...
@MarlonPassos-git yeah, that's the same performance improvement I saw. Already with small objects it improves by 2x. I agree that this change is valid and would drastically improve performance across...
I would also suggest, already for release 8.0.0, adding to the package JSON the detail about the minimum supported node version, with the `engines` property. Reference [here](https://docs.npmjs.com/cli/v8/configuring-npm/package-json#engines) Example: ```json {...
Yes. When we will drop support for v12 there will be changes regarding Rollup, tsconfig, the ci tests and the engine specified in the package.json As soon as node 18...
I believe this should be relatively easy to solve! Since sourcemaps point to the source files, I think that to solve this issue also the `src` directory should be budled...