@csstools/postcss-media-minmax 1.1.7 → 2.0.0
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 +7 -24
- package/README.md +1 -14
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,30 +1,13 @@
|
|
|
1
1
|
# Changes to PostCSS Media MinMax
|
|
2
2
|
|
|
3
|
-
###
|
|
3
|
+
### 2.0.0
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
_August 3, 2024_
|
|
6
6
|
|
|
7
|
-
- Updated
|
|
8
|
-
- Updated [`@csstools/css-
|
|
9
|
-
- Updated [`@csstools/css-
|
|
10
|
-
- Updated [`@csstools/
|
|
11
|
-
|
|
12
|
-
### 1.1.6
|
|
13
|
-
|
|
14
|
-
_May 4, 2024_
|
|
15
|
-
|
|
16
|
-
- Updated [`@csstools/css-tokenizer`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer) to [`2.3.1`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer/CHANGELOG.md#231) (patch)
|
|
17
|
-
- Updated [`@csstools/css-parser-algorithms`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms) to [`2.6.3`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms/CHANGELOG.md#263) (patch)
|
|
18
|
-
- Updated [`@csstools/css-calc`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc) to [`1.2.2`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc/CHANGELOG.md#122) (patch)
|
|
19
|
-
- Updated [`@csstools/media-query-list-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/media-query-list-parser) to [`2.1.11`](https://github.com/csstools/postcss-plugins/tree/main/packages/media-query-list-parser/CHANGELOG.md#2111) (patch)
|
|
20
|
-
|
|
21
|
-
### 1.1.5
|
|
22
|
-
|
|
23
|
-
_May 4, 2024_
|
|
24
|
-
|
|
25
|
-
- Updated [`@csstools/css-tokenizer`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer) to [`2.3.0`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer/CHANGELOG.md#230) (minor)
|
|
26
|
-
- Updated [`@csstools/css-parser-algorithms`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms) to [`2.6.2`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms/CHANGELOG.md#262) (patch)
|
|
27
|
-
- Updated [`@csstools/css-calc`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc) to [`1.2.1`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc/CHANGELOG.md#121) (patch)
|
|
28
|
-
- Updated [`@csstools/media-query-list-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/media-query-list-parser) to [`2.1.10`](https://github.com/csstools/postcss-plugins/tree/main/packages/media-query-list-parser/CHANGELOG.md#2110) (patch)
|
|
7
|
+
- Updated: Support for Node v18+ (major).
|
|
8
|
+
- 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)
|
|
9
|
+
- 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)
|
|
10
|
+
- Updated [`@csstools/css-calc`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc) to [`2.0.0`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc/CHANGELOG.md#200) (major)
|
|
11
|
+
- Updated [`@csstools/media-query-list-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/media-query-list-parser) to [`3.0.0`](https://github.com/csstools/postcss-plugins/tree/main/packages/media-query-list-parser/CHANGELOG.md#300) (major)
|
|
29
12
|
|
|
30
13
|
[Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-media-minmax/CHANGELOG.md)
|
package/README.md
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
# PostCSS Media MinMax [<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-media-minmax --save-dev
|
|
7
|
-
```
|
|
3
|
+
`npm install @csstools/postcss-media-minmax --save-dev`
|
|
8
4
|
|
|
9
5
|
[PostCSS Media MinMax] lets you use the range notation in media queries following the [Media Queries 4 Specification].
|
|
10
6
|
|
|
@@ -43,16 +39,7 @@ postcss([
|
|
|
43
39
|
]).process(YOUR_CSS /*, processOptions */);
|
|
44
40
|
```
|
|
45
41
|
|
|
46
|
-
[PostCSS Media MinMax] runs in all Node environments, with special
|
|
47
|
-
instructions for:
|
|
48
42
|
|
|
49
|
-
- [Node](INSTALL.md#node)
|
|
50
|
-
- [PostCSS CLI](INSTALL.md#postcss-cli)
|
|
51
|
-
- [PostCSS Load Config](INSTALL.md#postcss-load-config)
|
|
52
|
-
- [Webpack](INSTALL.md#webpack)
|
|
53
|
-
- [Next.js](INSTALL.md#nextjs)
|
|
54
|
-
- [Gulp](INSTALL.md#gulp)
|
|
55
|
-
- [Grunt](INSTALL.md#grunt)
|
|
56
43
|
|
|
57
44
|
_See prior work by [yisibl](https://github.com/yisibl) here [postcss-media-minmax](https://github.com/postcss/postcss-media-minmax)
|
|
58
45
|
To ensure long term maintenance and to provide the needed features this plugin was recreated based on yisibl's work._
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@csstools/postcss-media-minmax",
|
|
3
3
|
"description": "Use the range notation in CSS media queries",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.0",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
7
7
|
"name": "Antonio Laguna",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
}
|
|
29
29
|
],
|
|
30
30
|
"engines": {
|
|
31
|
-
"node": "
|
|
31
|
+
"node": ">=18"
|
|
32
32
|
},
|
|
33
33
|
"type": "module",
|
|
34
34
|
"main": "dist/index.cjs",
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
"dist"
|
|
52
52
|
],
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@csstools/css-calc": "^
|
|
55
|
-
"@csstools/css-parser-algorithms": "^
|
|
56
|
-
"@csstools/css-tokenizer": "^
|
|
57
|
-
"@csstools/media-query-list-parser": "^
|
|
54
|
+
"@csstools/css-calc": "^2.0.0",
|
|
55
|
+
"@csstools/css-parser-algorithms": "^3.0.0",
|
|
56
|
+
"@csstools/css-tokenizer": "^3.0.0",
|
|
57
|
+
"@csstools/media-query-list-parser": "^3.0.0"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"postcss": "^8.4"
|