Vasilii A

Results 3 issues of Vasilii A

If you do not use parameters in `@mixin` or `@include`, parentheses are optional. For example: `@mixin test() { ... }` eq `@mixin test { ... }`. `@include test();` eq `@include...

enhancement

## Proposed changes When using `variables: true` and a partially modified selector, the result was clearing used variables ## Types of changes - [x] Bugfix (non-breaking change which fixes an...

**Input**: ```js import { transform } from 'lightningcss'; const res = transform({ filename: 'test.css', minify: true, code: Buffer.from(` .foo { margin: var(--margin-y) 0; } `), visitor: { Variable(variable) { return...