@csstools/postcss-stepped-value-functions 2.1.0 → 2.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 +6 -0
- package/package.json +10 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changes to PostCSS Stepped Value Functions
|
|
2
2
|
|
|
3
|
+
### 2.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
|
+
- Updated `@csstools/css-calc` to `1.1.1` (patch)
|
|
8
|
+
|
|
3
9
|
### 2.1.0 (February 21, 2023)
|
|
4
10
|
|
|
5
11
|
- Removed: warnings on `var()` or otherwise unconvertible values (doesn't affect the output, non-breaking)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@csstools/postcss-stepped-value-functions",
|
|
3
3
|
"description": "Use round, rem and mod functions in CSS",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.1",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
7
7
|
"name": "Antonio Laguna",
|
|
@@ -39,24 +39,22 @@
|
|
|
39
39
|
"dist"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@csstools/css-calc": "^1.
|
|
43
|
-
"@csstools/css-parser-algorithms": "^2.
|
|
44
|
-
"@csstools/css-tokenizer": "^2.
|
|
42
|
+
"@csstools/css-calc": "^1.1.1",
|
|
43
|
+
"@csstools/css-parser-algorithms": "^2.1.1",
|
|
44
|
+
"@csstools/css-tokenizer": "^2.1.1"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"postcss": "^8.4"
|
|
48
48
|
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@csstools/postcss-tape": "*"
|
|
51
|
+
},
|
|
49
52
|
"scripts": {
|
|
50
|
-
"prebuild": "npm run clean",
|
|
51
53
|
"build": "rollup -c ../../rollup/default.mjs",
|
|
52
|
-
"clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"",
|
|
53
54
|
"docs": "node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs",
|
|
54
|
-
"lint": "
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"prepublishOnly": "npm run clean && npm run build && npm run test",
|
|
58
|
-
"test": "node .tape.mjs && npm run test:exports",
|
|
59
|
-
"test:exports": "node ./test/_import.mjs && node ./test/_require.cjs",
|
|
55
|
+
"lint": "node ../../.github/bin/format-package-json.mjs",
|
|
56
|
+
"prepublishOnly": "npm run build && npm run test",
|
|
57
|
+
"test": "node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs",
|
|
60
58
|
"test:rewrite-expects": "REWRITE_EXPECTS=true node .tape.mjs"
|
|
61
59
|
},
|
|
62
60
|
"homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-stepped-value-functions#readme",
|