@davidsneighbour/postcss-config 2024.1.2 → 2024.2.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/README.md +15 -15
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -22,18 +22,18 @@ A global `postcss-cli` installation won't work if the plugins in this package ar
|
|
|
22
22
|
|
|
23
23
|
## All configurations
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
25
|
+
| Configurations | | |
|
|
26
|
+
| --- | --- | --- |
|
|
27
|
+
| **Build Tools** | | |
|
|
28
|
+
| [Babel](packages/babel-config) | [Webpack](packages/webpack-config) | |
|
|
29
|
+
| **Testing** | | |
|
|
30
|
+
| [Cypress](packages/cypress-config) | [HTML Validate](packages/htmlvalidate-config/) | |
|
|
31
|
+
| **Linters and Formatters** | | |
|
|
32
|
+
| [Browserslist](packages/browserslist-config) | [ESLint](packages/eslint-config) | [PostCSS](packages/postcss-config) |
|
|
33
|
+
| [Prettier](packages/prettier-config) | [Stylelint](packages/stylelint-config) | |
|
|
34
|
+
| **Project Management** | | |
|
|
35
|
+
| [Commitlint](packages/commitlint-config) | [Release](packages/release-config) | |
|
|
36
|
+
| **Markdown and Writing** | | |
|
|
37
|
+
| [Markdownlint](packages/markdownlint-config) | [Remark Lint](packages/remark-config) | |
|
|
38
|
+
| **Other Tools** | | |
|
|
39
|
+
| [Bootstrap](packages/bootstrap-config) | [Tools](packages/tools) | |
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@davidsneighbour/postcss-config",
|
|
3
3
|
"description": "PostCSS configuration for use in @davidsneighbour projects.",
|
|
4
|
-
"version": "2024.1
|
|
4
|
+
"version": "2024.2.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "davidsneighbour/configurations",
|
|
7
7
|
"author": "Patrick Kollitsch <patrick@davids-neighbour.com> (https://davids-neighbour.com)",
|
|
8
8
|
"bugs": "https://github.com/davidsneighbour/configurations/issues",
|
|
9
9
|
"homepage": "https://github.com/davidsneighbour/configurations/tree/main/packages/postcss-config",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@davidsneighbour/browserslist-config": "^2024.1
|
|
11
|
+
"@davidsneighbour/browserslist-config": "^2024.2.1",
|
|
12
12
|
"@fullhuman/postcss-purgecss": "6.0.0",
|
|
13
13
|
"autoprefixer": "10.4.19",
|
|
14
14
|
"cssnano": "^6.1.2",
|
|
@@ -27,8 +27,9 @@
|
|
|
27
27
|
},
|
|
28
28
|
"main": "index.js",
|
|
29
29
|
"engines": {
|
|
30
|
-
"node": ">=20.
|
|
31
|
-
"npm": ">=10.
|
|
30
|
+
"node": ">=20.12.0",
|
|
31
|
+
"npm": ">=10.5.0"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "7865692c3fc19780e205b3e699d6a8e153f2869a",
|
|
34
|
+
"type": "module"
|
|
34
35
|
}
|