@csstools/postcss-gradient-stop-increments-experimental 2.0.3 → 2.0.5

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 CHANGED
@@ -1,10 +1,9 @@
1
1
  # Changes to PostCSS Gradient Stop Increments
2
2
 
3
- ### 2.0.3
3
+ ### 2.0.5
4
4
 
5
- _October 23, 2024_
5
+ _November 11, 2024_
6
6
 
7
- - Updated [`@csstools/css-parser-algorithms`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms) to [`3.0.3`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms/CHANGELOG.md#303) (patch)
8
- - Updated [`@csstools/css-calc`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc) to [`2.0.3`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc/CHANGELOG.md#203) (patch)
7
+ - Updated [`@csstools/css-calc`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc) to [`2.1.0`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc/CHANGELOG.md#210) (minor)
9
8
 
10
9
  [Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/experimental/postcss-gradient-stop-increments/CHANGELOG.md)
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  [PostCSS Gradient Stop Increments] lets you increment gradient stops following the [CSSWG 8616 proposal].
6
6
 
7
- ```pcss
7
+ ```css
8
8
  .example-1 {
9
9
  background: linear-gradient(red 50%, blue ++1px);
10
10
  }
@@ -72,7 +72,7 @@ is preserved. By default, it is not preserved.
72
72
  postcssGradientStopIncrementsExperimental({ preserve: true })
73
73
  ```
74
74
 
75
- ```pcss
75
+ ```css
76
76
  .example-1 {
77
77
  background: linear-gradient(red 50%, blue ++1px);
78
78
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@csstools/postcss-gradient-stop-increments-experimental",
3
3
  "description": "Increment CSS gradient stops",
4
- "version": "2.0.3",
4
+ "version": "2.0.5",
5
5
  "contributors": [
6
6
  {
7
7
  "name": "Antonio Laguna",
@@ -48,9 +48,9 @@
48
48
  "dist"
49
49
  ],
50
50
  "dependencies": {
51
- "@csstools/css-calc": "^2.0.3",
52
- "@csstools/css-parser-algorithms": "^3.0.3",
53
- "@csstools/css-tokenizer": "^3.0.2"
51
+ "@csstools/css-calc": "^2.1.0",
52
+ "@csstools/css-parser-algorithms": "^3.0.4",
53
+ "@csstools/css-tokenizer": "^3.0.3"
54
54
  },
55
55
  "peerDependencies": {
56
56
  "postcss": "^8.4"