swc/crates/swc_css_compat
Donny/강동윤 d89b60a000
fix(css/parser): Fix parsing of hsla(var(--foo), 1) (#8443)
**Description:**

```css
.test {
    border-color: hsla(var(--ds-gray-200-value), 1);
}
```

should be compiled as

```css

.test {
    border-color: hsla(var(--ds-gray-200-value), 1);
}
```

Previously, it was

```
.test {
    border-color: hsla(var(--ds-gray-200-value),);
}

```


**Related issue:**

 - https://linear.app/vercel/issue/PACK-2175
2023-12-23 12:39:54 +09:00
..
src refactor(css/compat): Support stable rust (#8386) 2023-12-07 16:57:26 +00:00
tests fix(css/parser): Fix parsing of hsla(var(--foo), 1) (#8443) 2023-12-23 12:39:54 +09:00
Cargo.toml chore: Publish crates 2023-12-08 07:18:16 +00:00