Paul Kiddle
Paul Kiddle
This appears to have been fixed in stylis and released as patch version [v4.1.3](https://github.com/thysultan/stylis/releases/tag/v4.1.3) (although they don't seem to have a changelog documenting this). The dependency version should be updated...
This is difficult because the row callback for `each` is synchronous, but `for await` would require an aync callback (even if you don't actually use any async methods in the...
I have a large csv of records that I want to import into the database. The file is read as an async stream to save memory and converted into SQL...
That's certainly a possibility! Though in that case I wonder why you have this feature at all, as surely all use cases could be solved this way? It strikes me...
Personally I don't think I'll need this feature again -- though if you decide not to accept this PR it might be worth deprecating the JS migrations with a warning...
I created a postcss plugin to do this job for background images https://github.com/niceagency/postcss-srcset
Thanks. I'll try and look into it too if I get a chance
I'm returning to look at this project again, and I've had some thoughts about the direction we might take. I think the outcome of this process should be: 1. High-level...
You'd have to create a separate `.mjs` file if you still want to support CJS implementations (since the `export` keyword is not supported outside of a module context), but essentially...
Yep, if you're happy to go down this route I'll set up a PR when I get some free time