Simon Williams
Simon Williams
Is this plugin even needed in webpack 5? The official mini-css-extract-plugin seems much improved, it seems to work with HMR too.
> it is the -c --cleanup option, (for lack of a better name - suggestions welcome) The builtin `git branch` has `--merged` and `--no-merged` options. It would probably be better...
Thanks, that's a better workaround as it avoids issue (3).
Wait, I don't think this should be closed, it's just a workaround. As documented, `ignore_last_delimiters` is the correct solution and it's still bugged in various ways.
The confusion/complication here seems to be trying to use `ignore_last_delimiters` to support this SSA subtitles case. If I say "*ignore* last delimiters", I expect them to be *ignored*, not included...
Thinking about this a bit further, I would suggest deprecating `ignore_last_delimiters` and creating these two options: - `ignore_trailing_delimiters` (to strip off trailing delimiters) - `merge_extra_columns` (to support the SSA use...
No that's exactly what `ignore_trailing_delimiters` *shouldn't* do. Trailing delimeters are *trailing* delimiters only. `a,"b",c,"d"` doesn't have any trailing delimiters because all delimiters are followed by other characters. Trailing delimiters means...
I just lost several hours due to this. If there is any caching at all it should be clearly stated in the readme.
I think this is the same issue that we have run into. Minimal example: ``` const WX = {}; export let manifestId; let foo; $: view = WX.View({ manifestId, },...
That's an interesting idea but these are generic components that are used frequently, I shouldn't have to pollute everything with `.default` all over the place.