Slava
Slava
Looks like the stats format was changed at some point by Webpack and the tool wasn't updated to handle new format correctly. It can't find the `modules` property in the...
Make sure that you generate the `stats.json` file with `modules` property set to `true`, otherwise it will not contain it and will cause the issue with most tools. Be advised,...
I even wrote a small post about this issue: https://medium.com/web-developers-path/using-parent-selector-prefixes-in-sass-5adf22ff7078 It's funny how this is being discussed for a five years already = )
Hello! Thank you for this great module! I do have this problem also right out of the box. I've just copied the example from README: ``` var ProgressBar = require('ascii-progress');...
@Stradivario I'm not able to try this out, but thanks nevertheless. This should be used on source files, right?
@AleRob90 I would suggest to extract your question to a separate issue to avoid off-topic discussions in this one.
Looking at other linters, like ESLint, the are rules which could work in multiple directions, like in our example. Such rules have a broader name, e.g. `block-spacing`, instead of `no-block-spacing`...
I think I have a related issue #609. I believe the plugin shouldn't filter out content received from the compiler, for future compatibility at least. @ivogabe are you planning to...
@ivogabe thanks, I will try to do that. However, when I tried to build and test the source code in master yesterday it was failing with errors.
On the other hand, the errors were due to the fact that I've installed this repository as a submodule to my project. When deployed separately it works correctly. Could you...