Daniel Puckowski
Daniel Puckowski
**What**: * Fixes CSS custom property handling to address issue #4224 and issue #3777. * Added new CSS custom property tests. **Why**: Less.js was producing invalid CSS output for certain...
**What**: Fix issue #4354 unknown at-rule expressions should not have commas in keyword list. **Why**: Current behavior (4.4.0+): ```css .box { @apply h-64, w-64; } ``` Expected behavior: ```css .box...
* Update README.md copyright year. **What**: Minor housekeeping of README.md. **Why**: I noticed the copyright year hasn't been updated in a while. **Checklist**: - [x] Documentation - [ ] Added/updated...
**What**: Fixes issue https://github.com/less/less.js/issues/4339 This Less: ```css @spacing-top: 4px; @spacing-bottom: 4px; @border-width: 4px; @border-color: #444; .divider-bottom( @spacing-top: @spacing-top, @spacing-bottom: @spacing-bottom, @border-width: @border-width, @border-color: @border-color ) { margin-top: @spacing-top; margin-bottom: @spacing-bottom;...
**What**: Fix for issue #4358 that correctly expands parent selectors in a list in a selector. **Why**: This Less: ```css .x:is(.x.a) { color: #f00; } .x:not(&.b, &.c) { color: #0f0;...
* Update README.md copyright year. **What**: Minor housekeeping of README.md. **Why**: I noticed the copyright year hasn't been updated in a while. **Checklist**: - [x] Documentation - [ ] Added/updated...
Update contributing to Less.js documentation to: * reflect pnpm usage * reflect the fact that PhantomJS is no longer required * update grunt command options * fix some Less.js GitHub...