Vadim Smelyanskiy
Vadim Smelyanskiy
I recommend Moby – Thousand as a benchmark for irregular (but not erratic) and rapid BPM. Excerpt from Wikipedia: > Thousand" was listed in Guinness World Records for having the...
@mhutter Oh, this is a tricky question. Running `ps aux | grep docker` shows that the docker container I am starting via systemd is owned by "root" The .service file...
Here's a script that automates @gabrielbull's method to the point it's the same as using `patch-package` with yarn v1. ``` mkdir tmp cd tmp npm init -y npm install --save...
Also, for anyone wishing to use `patch-package` with yarn berry (v2+), here's a plugin that allows to run `patch-package` on postinstall https://github.com/GravitywellUK/yarn-plugin-postinstall
I wonder if some collaboration could happen with https://github.com/status-im/react-native-desktop-qt
Generally, the way source maps work for minified JS, for instance, is that minifiers produce source maps that contain associations between source AST and the resulting AST, which allows you...
@shadowtime2000 We'd need to extend the compilation sequence with template source line/column numbers, so that running the compiled template could yield the source map along with the rendered string. https://github.com/eta-dev/eta/blob/master/src/compile-string.ts#L68...
@shadowtime2000 Right now the function that gets compiled from a string, can only be manipulated through a `plugin.processFnString` method. The way AST is mapped onto the FnString is not extendable....
@shadowtime2000 No worries :smile: Dropping in a new compile to string would work, but that's cumbersome to use. What I mean instead is to be able to _extend_ the existing...
filoxo's workaround with passing "include: false, includeFiles: false" didn't work for me Now I get an even more cryptic error: ``` Cannot read property 'e' of undefined ```