Tomas Ruzicka

Results 24 comments of Tomas Ruzicka

We had the same problem, but now we are able to run just fine on ruby 2.7

+1 Got the same problem.

Also here: https://devdocs.io/webpack~1/

https://github.com/mysqljs/mysql/issues/1507#issuecomment-242885003 worked for me. Don't forget to `flush privileges;` after.

Also having problems with high memory usage. We are using Jimp as a dependency of https://github.com/haydenbleasel/favicons This is a dealbreaker for us.

I am using this workaround: ``` import rangy from 'rangy'; import rangyHighlight from 'rangy/lib/rangy-highlighter'; import rangyClassApplier from 'rangy/lib/rangy-classapplier'; import rangyTextRange from 'rangy/lib/rangy-textrange'; import rangySerializer from 'rangy/lib/rangy-serializer'; ```

@timdown How would you go about it? I could take a look at it and send a PR.

I also ran into this issue. I am using the highlighter module and I am getting `Uncaught TypeError: f.default.createHighlighter is not a function` in my production error log. Since loading...

I am using this workaround: ``` rangy.createClassApplier('snippet', { elementTagName: 'span', onElementCreate: el => { el.className = cx(el.className, 'another-class'); }, }); ```

@chendo Could you point me in some direction? I could find some time to look at it.