Alexey Prokhorov

Results 74 comments of Alexey Prokhorov

Thank you for the response. It's sad news. In my case, it's something like ```pascal type TClass1 = class; ... TClass10 = class; {$I Class1Header.inc} ... {$I Class10Header.inc} implementation {$I...

It sounds promising.

I've spent hours for finding the reason. For me, the reason was `got` dependency of webdriver. I've downgraded it from 11.7.0 to 11.5.1 (by changing package-lock.json) and now it works...

```json "webdriver": { "version": "6.5.0", "resolved": "https://registry.npmjs.org/webdriver/-/webdriver-6.5.0.tgz", "integrity": "sha512-6iOll9TshD4+2J+em+bLshvM1uXtnotdZ+JaALqRLbkVswLRFU0pTVP1oug0e/IYwL7Me4Cafh9ugQ4PwPuOnA==", "dev": true, "requires": { "@wdio/config": "6.4.7", "@wdio/logger": "6.4.7", "@wdio/protocols": "6.3.6", "@wdio/utils": "6.5.0", "lodash.merge": "^4.6.1" }, "dependencies": { ... "got": { "version":...

@jesusiglesias I've traced until [that place](https://github.com/webdriverio/webdriverio/blob/master/packages/webdriver/src/request.ts#L144) than replaced `got` by `request` (it works correctly), than tried got 11.5.1 instead of the latest

@Zhell1 you've passed some type of object [restricted by Structured Clone Algorithm](https://www.electronjs.org/docs/latest/api/ipc-renderer#ipcrenderersendchannel-args). In the next version of electron-log such a type will be stringified.

Thank you @clemp6r . Unfortunately, I can't approve this PR. While it solves an issues with Sentry, it breaks the following case: `Object.assign(console, log.functions);`. Please let me know if I...

The same issue. Quick and dirty workaround which works for my project: - Set SINGLE_FILE=1 in Makefile - Comment `module = undefined;` in shell-pre.js Than I recompilled sql.js and imported...

In v5 only the main process writes to a file. Thank you for your suggestions.

Please let me know if it's ready