@pplancq/postcss-config 1.0.2 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +5 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
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
+
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)
13
+
14
+
15
+ ### Features
16
+
17
+ * **dev-tools:** add minimal nodejs versions for each package ([0d8447a](https://github.com/pplancq/dev-tools/commit/0d8447a6f4e26ff9cb28baac8434020156d5dac0))
18
+
1
19
  ## @pplancq/postcss-config [1.0.2](https://github.com/pplancq/dev-tools/compare/@pplancq/postcss-config@1.0.1...@pplancq/postcss-config@1.0.2) (2024-04-16)
2
20
 
3
21
  ## @pplancq/postcss-config [1.0.1](https://github.com/pplancq/dev-tools/compare/@pplancq/postcss-config@1.0.0...@pplancq/postcss-config@1.0.1) (2024-03-20)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pplancq/postcss-config",
3
- "version": "1.0.2",
3
+ "version": "2.0.0",
4
4
  "license": "MIT",
5
5
  "description": "pplancq postcss config",
6
6
  "author": "pplancq <paul.plancq@outlook.fr>",
@@ -23,7 +23,10 @@
23
23
  "dependencies": {
24
24
  "postcss-flexbugs-fixes": "^5.0.2",
25
25
  "postcss-normalize": "^10.0.1",
26
- "postcss-preset-env": "^9.5.5"
26
+ "postcss-preset-env": "^10.0.0"
27
+ },
28
+ "engines": {
29
+ "node": ">=18"
27
30
  },
28
31
  "volta": {
29
32
  "extends": "../../package.json"