@csstools/postcss-color-function 4.0.0 → 4.0.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 +3 -9
- package/README.md +1 -14
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,9 @@
|
|
|
1
1
|
# Changes to PostCSS Color Function
|
|
2
2
|
|
|
3
|
-
### 4.0.
|
|
3
|
+
### 4.0.1
|
|
4
4
|
|
|
5
|
-
_August
|
|
5
|
+
_August 14, 2024_
|
|
6
6
|
|
|
7
|
-
- Updated
|
|
8
|
-
- Updated [`@csstools/css-color-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser) to [`2.0.5`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser/CHANGELOG.md#205) (patch)
|
|
9
|
-
- Updated [`@csstools/css-tokenizer`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer) to [`3.0.0`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer/CHANGELOG.md#300) (major)
|
|
10
|
-
- 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)
|
|
11
|
-
- Updated [`@csstools/css-parser-algorithms`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms) to [`3.0.0`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms/CHANGELOG.md#300) (major)
|
|
12
|
-
- 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)
|
|
13
|
-
- Updated [`@csstools/css-color-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser) to [`3.0.0`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser/CHANGELOG.md#300) (major)
|
|
7
|
+
- Updated [`@csstools/css-color-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser) to [`3.0.1`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser/CHANGELOG.md#301) (patch)
|
|
14
8
|
|
|
15
9
|
[Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-function/CHANGELOG.md)
|
package/README.md
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
# PostCSS Color Function [<img src="https://postcss.github.io/postcss/logo.svg" alt="PostCSS Logo" width="90" height="90" align="right">][PostCSS]
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
```bash
|
|
6
|
-
npm install @csstools/postcss-color-function --save-dev
|
|
7
|
-
```
|
|
3
|
+
`npm install @csstools/postcss-color-function --save-dev`
|
|
8
4
|
|
|
9
5
|
[PostCSS Color Function] lets you use the `color` function in
|
|
10
6
|
CSS, following the [CSS Color] specification.
|
|
@@ -48,16 +44,7 @@ postcss([
|
|
|
48
44
|
]).process(YOUR_CSS /*, processOptions */);
|
|
49
45
|
```
|
|
50
46
|
|
|
51
|
-
[PostCSS Color Function] runs in all Node environments, with special
|
|
52
|
-
instructions for:
|
|
53
47
|
|
|
54
|
-
- [Node](INSTALL.md#node)
|
|
55
|
-
- [PostCSS CLI](INSTALL.md#postcss-cli)
|
|
56
|
-
- [PostCSS Load Config](INSTALL.md#postcss-load-config)
|
|
57
|
-
- [Webpack](INSTALL.md#webpack)
|
|
58
|
-
- [Next.js](INSTALL.md#nextjs)
|
|
59
|
-
- [Gulp](INSTALL.md#gulp)
|
|
60
|
-
- [Grunt](INSTALL.md#grunt)
|
|
61
48
|
|
|
62
49
|
## Options
|
|
63
50
|
|
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": "4.0.
|
|
4
|
+
"version": "4.0.1",
|
|
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/css-color-parser": "^3.0.
|
|
41
|
+
"@csstools/css-color-parser": "^3.0.1",
|
|
42
42
|
"@csstools/css-parser-algorithms": "^3.0.0",
|
|
43
43
|
"@csstools/css-tokenizer": "^3.0.0",
|
|
44
44
|
"@csstools/postcss-progressive-custom-properties": "^4.0.0",
|