@csstools/postcss-media-minmax 2.0.4 → 2.0.6

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,12 +1,9 @@
1
1
  # Changes to PostCSS Media MinMax
2
2
 
3
- ### 2.0.4
3
+ ### 2.0.6
4
4
 
5
- _November 1, 2024_
5
+ _December 27, 2024_
6
6
 
7
- - Updated [`@csstools/css-tokenizer`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer) to [`3.0.3`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer/CHANGELOG.md#303) (patch)
8
- - Updated [`@csstools/css-parser-algorithms`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms) to [`3.0.4`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms/CHANGELOG.md#304) (patch)
9
- - Updated [`@csstools/css-calc`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc) to [`2.0.4`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc/CHANGELOG.md#204) (patch)
10
- - Updated [`@csstools/media-query-list-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/media-query-list-parser) to [`4.0.2`](https://github.com/csstools/postcss-plugins/tree/main/packages/media-query-list-parser/CHANGELOG.md#402) (patch)
7
+ - Updated [`@csstools/css-calc`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc) to [`2.1.1`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc/CHANGELOG.md#211) (patch)
11
8
 
12
9
  [Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-media-minmax/CHANGELOG.md)
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  [PostCSS Media MinMax] lets you use the range notation in media queries following the [Media Queries 4 Specification].
6
6
 
7
- ```pcss
7
+ ```css
8
8
  @media screen and (width >=500px) and (width <=1200px) {
9
9
  .bar {
10
10
  display: block;
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": "2.0.4",
4
+ "version": "2.0.6",
5
5
  "contributors": [
6
6
  {
7
7
  "name": "Antonio Laguna",
@@ -51,7 +51,7 @@
51
51
  "dist"
52
52
  ],
53
53
  "dependencies": {
54
- "@csstools/css-calc": "^2.0.4",
54
+ "@csstools/css-calc": "^2.1.1",
55
55
  "@csstools/css-parser-algorithms": "^3.0.4",
56
56
  "@csstools/css-tokenizer": "^3.0.3",
57
57
  "@csstools/media-query-list-parser": "^4.0.2"