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

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v1.3.0

- [x] numerical and dimension tokens use numbers instead of string
- [x] fix bug when inlineCssVariables is disabled and computeCalcExpression is enabled

## V1.2.0

- [x] convert color to any supported color space #94
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Javascript module from cdn

<script type="module">

import {transform} from 'https://esm.sh/@tbela99/css-parser@1.1.2/web';
import {transform} from 'https://esm.sh/@tbela99/css-parser@1.3.0/web';


const css = `
Expand Down Expand Up @@ -302,7 +302,7 @@ console.debug(render(result.ast.chi[0].chi[1].chi[1], {withParents: true}));
### Convert colors

```javascript
import {transform} from '@tbela99/css-parser';
import {transform, ColorType} from '@tbela99/css-parser';


const css = `
Expand Down
Loading