@csstools/postcss-ic-unit 4.0.0 → 4.0.2

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,11 +1,9 @@
1
1
  # Changes to PostCSS IC Unit
2
2
 
3
- ### 4.0.0
3
+ ### 4.0.2
4
4
 
5
- _August 3, 2024_
5
+ _May 27, 2025_
6
6
 
7
- - Updated: Support for Node v18+ (major).
8
- - Updated [`@csstools/utilities`](https://github.com/csstools/postcss-plugins/tree/main/packages/utilities) to [`2.0.0`](https://github.com/csstools/postcss-plugins/tree/main/packages/utilities/CHANGELOG.md#200) (major)
9
- - Updated [`@csstools/postcss-progressive-custom-properties`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-progressive-custom-properties) to [`4.0.0`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-progressive-custom-properties/CHANGELOG.md#400) (major)
7
+ - Updated [`@csstools/postcss-progressive-custom-properties`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-progressive-custom-properties) to [`4.1.0`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-progressive-custom-properties/CHANGELOG.md#410) (minor)
10
8
 
11
9
  [Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-ic-unit/CHANGELOG.md)
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
  [<img alt="npm version" src="https://img.shields.io/npm/v/@csstools/postcss-ic-unit.svg" height="20">][npm-url]
5
- [<img alt="Build Status" src="https://github.com/csstools/postcss-plugins/workflows/test/badge.svg" height="20">][cli-url]
5
+ [<img alt="Build Status" src="https://github.com/csstools/postcss-plugins/actions/workflows/test.yml/badge.svg?branch=main" height="20">][cli-url]
6
6
  [<img alt="Discord" src="https://shields.io/badge/Discord-5865F2?logo=discord&logoColor=white">][discord]
7
7
  <br><br>
8
8
  [<img alt="Baseline Status" src="https://cssdb.org/images/badges-baseline/ic-unit.svg" height="20">][css-url]
@@ -10,7 +10,7 @@
10
10
 
11
11
  [PostCSS IC Unit] lets you use the ic length unit, following the [CSS Values and Units Module] specification.
12
12
 
13
- ```pcss
13
+ ```css
14
14
  p {
15
15
  text-indent: 2ic;
16
16
  }
@@ -68,7 +68,7 @@ is preserved. By default, it is not preserved.
68
68
  postcssIcUnit({ preserve: true })
69
69
  ```
70
70
 
71
- ```pcss
71
+ ```css
72
72
  p {
73
73
  text-indent: 2ic;
74
74
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@csstools/postcss-ic-unit",
3
3
  "description": "Use the ic length unit",
4
- "version": "4.0.0",
4
+ "version": "4.0.2",
5
5
  "author": "Jonathan Neal <jonathantneal@hotmail.com>",
6
6
  "license": "MIT-0",
7
7
  "funding": [
@@ -38,7 +38,7 @@
38
38
  "dist"
39
39
  ],
40
40
  "dependencies": {
41
- "@csstools/postcss-progressive-custom-properties": "^4.0.0",
41
+ "@csstools/postcss-progressive-custom-properties": "^4.1.0",
42
42
  "@csstools/utilities": "^2.0.0",
43
43
  "postcss-value-parser": "^4.2.0"
44
44
  },