Jovica Aleksic

Results 157 comments of Jovica Aleksic

I believe it's worth "patching up" bulma to avoid this very specific conflict. The thing is, prism is most probably used in `` and/or ``. From bulma's perspective, I don't...

@Tattomoosa your workaround is great for most cases, but doesn't work in my case. I have no control over the order in which stylesheets are loaded, and bulma is loaded...

FYI my workaround goes like this: https://github.com/loopmode/bulma-prism

Another workaround, based on https://jeremyabbott.dev/posts/setting-up-prism-with-bulma.html ```javascript import Prism from "prismjs"; import "prismjs/plugins/custom-class/prism-custom-class"; Prism.plugins.customClass.map({ number: "prism-number", tag: "prism-tag" }); ```

Too bad there is no progress whatsoever here, since there already is a pretty decent PR. I just started typing this out manually for a pet project, but I'll stop...

@thib92 what updates? Just kidding :D of course you're right, @types/reactbulma would be much preferable. I just have to get familiar with the DefinitelyTyped repo and workflow. They do have...

Here is a setup with HMR based on webpack-dev-server and react-hot-loader: https://github.com/loopmode/carlo-webpack-react-hmr

The preload script is expected to be a static Javascript file, not a module. This is by electron, not electron-webpack. Electron-webpack has no concept of preload scripts. It has no...

Personally, I'd take a step back and look at the situation trying 3). It's mostly the right thing to do when there's a next problem whenever you worked around the...

Hmm just a hunch but...based on [this issue](https://github.com/peerigon/extract-loader/issues/81).. Could you try pinning extract-loader to version 2? Put this in the package.json: ``` "resolutions": { "extract-loader": "2.0.0" } ``` Then delete...