Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/jsr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@ jobs:
contents: read
id-token: write # The OIDC ID token is used for authentication with JSR.
steps:
- uses: actions/checkout@v7
- run: npx jsr publish
- uses: actions/checkout@v6
- run: npx jsr publish


17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## v1.4.7

### Improvements

- [x] Added support for parsing wrapped function arguments as defined in the CSS Values & Units Level 5 specification for component functions.

```css
font-family: random-item(--x,{Times,serif},{Arial,sans-serif},{Courier,monospace})
```
### Fixes

- [x] Fixed a performance regression, resulting in approximately ***25%*** performance gain.
- [x] Fixed a `conic-gradient()` minification bug.
- [x] Fixed missing characters by the streaming tokenizer
- [x] `walk()` with reverse parameter enabled was reversing the node's children
- [x] merging nodes could introduce a null reference

## v1.4.6

- [x] Fix if syntax expansion regression bug #134
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ Try it [online](https://tbela99.github.io/css-parser/playground/)
- [CSS Modules](https://tbela99.github.io/css-parser/docs/documents/Guide.CSS_Modules.html)
- [Minification](https://tbela99.github.io/css-parser/docs/documents/Guide.Minification.html)
- [Custom Transform](https://tbela99.github.io/css-parser/docs/documents/Guide.Custom_Transform.html)
- [Syntax Lowering](https://tbela99.github.io/css-parser/docs/documents/Guide.Syntax_Lowering.html)
- [Ast Manipulation](https://tbela99.github.io/css-parser/docs/documents/Guide.Ast_Manipulation.html)
- [Utility Functions](https://tbela99.github.io/css-parser/docs/documents/Guide.Utility_Functions.html)
-
Expand Down
Loading
Loading