@csstools/postcss-color-function 3.0.3 → 3.0.4
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/README.md +4 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changes to PostCSS Color Function
|
|
2
2
|
|
|
3
|
+
### 3.0.4
|
|
4
|
+
|
|
5
|
+
_September 18, 2023_
|
|
6
|
+
|
|
7
|
+
- Updated [`@csstools/postcss-progressive-custom-properties`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-progressive-custom-properties) to [`3.0.1`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-progressive-custom-properties/CHANGELOG.md#301) (patch)
|
|
8
|
+
|
|
3
9
|
### 3.0.3
|
|
4
10
|
|
|
5
11
|
_September 2, 2023_
|
package/README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
[<img alt="npm version" src="https://img.shields.io/npm/v/@csstools/postcss-color-function.svg" height="20">][npm-url] [<img alt="CSS Standard Status" src="https://cssdb.org/images/badges/color-function.svg" height="20">][css-url] [<img alt="Build Status" src="https://github.com/csstools/postcss-plugins/workflows/test/badge.svg" height="20">][cli-url] [<img alt="Discord" src="https://shields.io/badge/Discord-5865F2?logo=discord&logoColor=white">][discord]
|
|
4
4
|
|
|
5
|
+
```bash
|
|
6
|
+
npm install @csstools/postcss-color-function --save-dev
|
|
7
|
+
```
|
|
8
|
+
|
|
5
9
|
[PostCSS Color Function] lets you use the `color` function in
|
|
6
10
|
CSS, following the [CSS Color] specification.
|
|
7
11
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@csstools/postcss-color-function",
|
|
3
3
|
"description": "Use the color() function in CSS",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.4",
|
|
5
5
|
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
|
|
6
6
|
"license": "MIT-0",
|
|
7
7
|
"funding": [
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@csstools/css-color-parser": "^1.3.1",
|
|
39
39
|
"@csstools/css-parser-algorithms": "^2.3.1",
|
|
40
40
|
"@csstools/css-tokenizer": "^2.2.0",
|
|
41
|
-
"@csstools/postcss-progressive-custom-properties": "^3.0.
|
|
41
|
+
"@csstools/postcss-progressive-custom-properties": "^3.0.1"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"postcss": "^8.4"
|