Mateusz Derks

Results 23 comments of Mateusz Derks

Maybe I should use [TS projects](https://www.typescriptlang.org/docs/handbook/project-references.html) instead 🤔 [edit] I tried to add a solution tsconfig to the root folder but it doesn't help ``` { "compilerOptions": { "noEmit": true...

Take a look at `worker.detect()` function which returns the angle ``` interface DetectData { tesseract_script_id: number script: string script_confidence: number orientation_degrees: number orientation_confidence: number } ```

I'm facing this issue as well. We use `require.context` to load test files. I have compilation error available here in `err` https://github.com/webpack-contrib/karma-webpack/blob/2bb71f53d4957c75599bb1e5165445324194a4ff/src/karma-webpack.js#L192 But the `done` hook is never called here:...

I've prepared a minimal repo where you can reproduce the issue. https://github.com/ertrzyiks/karma-webpack-failed-compilation-example

Hi @anto-ac , we run broker on machine with 2gb of ram and the container is killed with OOMKilled reason when we visit ?tags=true page. Database is postgres.

@anto-ac database is a separate instance from cloudsql. @bethesque I was curious if we ever need old data, like tags related to branches that were already merged. We never remove...

Thanks a lot @bethesque , that's very helpful 👍

@mefellows I could give it a shot, I just need some more time to wrap my head around the codebase. I suppose the fix would be to avoid the side...

@sankalan-sharechat I created a work in progress branch https://github.com/pact-foundation/pact-js/pull/399 I realized that removing `.pipe()` call eliminates the memory leak. Given that last release of https://www.npmjs.com/package/bunyan-prettystream happened 6 years ago before...

What I found is that: - bunyan itself provides logging with JSON messages and prettystream is used to replace JSON with human-readable message. - `bunyan-prettystream` was introduced https://github.com/pact-foundation/pact-js/commit/57f7352bb6eedddc211e0f7b3d75d6c1ffcd0825 for consistency...