Yuri Gadow
Yuri Gadow
Observed on ST 3083 as well, disabling ElixirSublime is the only "workaround" I've been able to find. Log output is: ``` Traceback (most recent call last): File "/Applications/Sublime Text.app/Contents/MacOS/sublime_plugin.py", line...
Here's the webpack.config.js stripped way down (still has same error): ``` var IndexHtmlPlugin = require("indexhtml-webpack-plugin"); module.exports = { entry: { "index.html": "./src/index.html" }, module: { loaders: [ { test: /index\.html$/,...
Thanks. Yes, I'm afraid ./src/index.html is correct. I've also tried moving index.html to the project's root and just using './index.html' and using the context option to set 'src', and just...
Note this appears to be specific to certain versions of yarn, e.g., this plugin fails with yarn 1.22.18 but not 1.22.17 or 1.22.19. See also https://github.com/twuni/asdf-yarn/pull/24
@amitsarkerr That's probably SVGR+SVGO mangling the class attrs. I prefer to have good SVG src to start, and so I always disable SVGO. That sidesteps the problem. If that would...
With SublimeText 3083 and the ST packages Elixir 2015.03.04.11.47.26 and SublimeREPL 2.1.1 this workaround doesn't work around. The config change mentioned above is ignored and the loose file (Elixir.tmLanguage) isn't...
It's early days, but for the moment I was able to resolve this in our apps by requiring react-redux >= 5.0.4.
React-redux 5.0.4 was a red herring for us. At the moment, I'm not aware of any version combination that works reliably with deep trees of mixed Immutables, e.g., Map.Map.OrderedSet.Map. Rehydration...