EzzAk

Results 3 issues of EzzAk

### What should be improved? Is there any good reason that there is no option to prevent sorting of selectors https://github.com/cssnano/cssnano/blob/master/packages/postcss-minify-selectors/src/index.js#L236 ### Describe the solution you would like Ideally have...

enhancement

I've come across this odd case where `0e` is mapped to `0\65`, I'm trying to understand why this is the case. I've tried adding a custom Visitor to avoid this...

Minimal repro: ``` const {transform} = require('lightningcss'); const {Buffer} = require('node:buffer'); transform({ code: Buffer.from(`.foo { background: url("data:image/svg+xml,"); backgroundColor: url('data:image/svg+xml,'); }`), minify: true, }); ``` This produces an error when parsing...