@pplancq/postcss-config 1.1.0 → 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 +11 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## @pplancq/postcss-config [2.0.0](https://github.com/pplancq/dev-tools/compare/@pplancq/postcss-config@1.1.0...@pplancq/postcss-config@2.0.0) (2024-08-16)
|
|
2
|
+
|
|
3
|
+
### ⚠ BREAKING CHANGES
|
|
4
|
+
|
|
5
|
+
* **postcss-config:** Node.js versions 14 and 16 are no longer supported.
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **postcss-config:** bump postcss-preset-env from 9.6.0 to 10.0.0 ([22eb6f8](https://github.com/pplancq/dev-tools/commit/22eb6f862bc13bd9cf01a0d6e0820efcb4586c39))
|
|
10
|
+
* **postcss-config:** update Node.js engine requirement to >=18 ([0b3fa49](https://github.com/pplancq/dev-tools/commit/0b3fa4994673fb4bcdbbb973b15e7d39e3a542df))
|
|
11
|
+
|
|
1
12
|
## @pplancq/postcss-config [1.1.0](https://github.com/pplancq/dev-tools/compare/@pplancq/postcss-config@1.0.2...@pplancq/postcss-config@1.1.0) (2024-05-06)
|
|
2
13
|
|
|
3
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pplancq/postcss-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "pplancq postcss config",
|
|
6
6
|
"author": "pplancq <paul.plancq@outlook.fr>",
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"postcss-flexbugs-fixes": "^5.0.2",
|
|
25
25
|
"postcss-normalize": "^10.0.1",
|
|
26
|
-
"postcss-preset-env": "^
|
|
26
|
+
"postcss-preset-env": "^10.0.0"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": "
|
|
29
|
+
"node": ">=18"
|
|
30
30
|
},
|
|
31
31
|
"volta": {
|
|
32
32
|
"extends": "../../package.json"
|