prcdpr
prcdpr
Thanks for finding this. I don't like the solution mentioned as it requires system restart, but following can also be done (copying my another answer): ```powershell [Console]::OutputEncoding = [Text.UTF8Encoding]::UTF8 ```...
Until it's fixed on electron-webpack side, you can patch it Inside `package.json` add ```json "scripts": { "postinstall": "node patch.js" } ``` Create `patch.js` file in root directory. **Edit**: this script...
@loopmode I'm still learning, so I checked my code twice and it turns out that `source-map` and `buffer-from` don't have to be in externals however they must be included in...
Thanks, I read that discussion and `config.externals = [];` in Webpack main and renderer configs seems to do the trick. At least I learned something 😄 Thanks! After adding `config.externals...
``` chmod -R 600 /var/lib/zabbix/ ``` solves the problem for me
We use private NuGet feed for providing binary updates to worker machines and I had to put download count increment into try/catch block to stop error propagation which caused HTTP...
Similar to above but fixed a couple of icons (function, package and others) Also with TypeScript checking: https://gist.github.com/prcdpr/c328461847d991b2492d20220456133e
Sounds good to me. I think the separate target is alright, especially that you may not want to add breaking compatibility changes. Users of GraylogHttp library may have their own...
EuiPortal should be able to use different portal target than document.body based on provided Context
EuiWindowEvent would need same treatment too: https://github.com/elastic/eui/blob/main/packages/eui/src/services/window_event/window_event.ts It relies on hardcoded `window` object making it incompatible when rendering via React Portals to child windows. Meaning that only possible workaround for...
EuiPortal should be able to use different portal target than document.body based on provided Context
What's the recommended way of using locally forked EUI repository? Currently my flow is: * Write changes in locally forked `@elastic/eui` repo. * `yarn build` * `yalc publish` (https://github.com/wclr/yalc) On...