@csstools/css-calc 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changes to CSS Calc
|
|
2
2
|
|
|
3
|
+
### 1.1.1 (April 10, 2023)
|
|
4
|
+
|
|
5
|
+
- Updated `@csstools/css-tokenizer` to `2.1.1` (patch)
|
|
6
|
+
- Updated `@csstools/css-parser-algorithms` to `2.1.1` (patch)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
3
10
|
### 1.1.0 (April 10, 2023)
|
|
4
11
|
|
|
5
12
|
- Expose the list of supported math functions.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@csstools/css-calc",
|
|
3
3
|
"description": "Solve CSS math expressions",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.1",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
7
7
|
"name": "Antonio Laguna",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"dist"
|
|
40
40
|
],
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@csstools/css-parser-algorithms": "^2.
|
|
43
|
-
"@csstools/css-tokenizer": "^2.
|
|
42
|
+
"@csstools/css-parser-algorithms": "^2.1.1",
|
|
43
|
+
"@csstools/css-tokenizer": "^2.1.1"
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"build": "rollup -c ../../rollup/default.mjs",
|