@csstools/postcss-hwb-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 HWB 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-hwb-function/CHANGELOG.md)
|
package/README.md
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
# PostCSS HWB 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-hwb-function --save-dev
|
|
7
|
-
```
|
|
3
|
+
`npm install @csstools/postcss-hwb-function --save-dev`
|
|
8
4
|
|
|
9
5
|
[PostCSS HWB Function] lets you use the `hwb()` color function in CSS, following [CSS Color Module 4].
|
|
10
6
|
|
|
@@ -47,16 +43,7 @@ postcss([
|
|
|
47
43
|
]).process(YOUR_CSS /*, processOptions */);
|
|
48
44
|
```
|
|
49
45
|
|
|
50
|
-
[PostCSS HWB Function] runs in all Node environments, with special
|
|
51
|
-
instructions for:
|
|
52
46
|
|
|
53
|
-
- [Node](INSTALL.md#node)
|
|
54
|
-
- [PostCSS CLI](INSTALL.md#postcss-cli)
|
|
55
|
-
- [PostCSS Load Config](INSTALL.md#postcss-load-config)
|
|
56
|
-
- [Webpack](INSTALL.md#webpack)
|
|
57
|
-
- [Next.js](INSTALL.md#nextjs)
|
|
58
|
-
- [Gulp](INSTALL.md#gulp)
|
|
59
|
-
- [Grunt](INSTALL.md#grunt)
|
|
60
47
|
|
|
61
48
|
## Options
|
|
62
49
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@csstools/postcss-hwb-function",
|
|
3
3
|
"description": "Use hwb() color functions in CSS",
|
|
4
|
-
"version": "4.0.
|
|
4
|
+
"version": "4.0.1",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
7
7
|
"name": "Antonio Laguna",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"dist"
|
|
49
49
|
],
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@csstools/css-color-parser": "^3.0.
|
|
51
|
+
"@csstools/css-color-parser": "^3.0.1",
|
|
52
52
|
"@csstools/css-parser-algorithms": "^3.0.0",
|
|
53
53
|
"@csstools/css-tokenizer": "^3.0.0",
|
|
54
54
|
"@csstools/postcss-progressive-custom-properties": "^4.0.0",
|