@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.
Files changed (2) hide show
  1. package/README.md +15 -15
  2. 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
- * [Babel](/packages/babel-config)
26
- * [Bootstrap](/packages/bootstrap-config)
27
- * [Browserslist](/packages/browserslist-config)
28
- * [Commitlint](/packages/commitlint-config)
29
- * [CssNano](/packages/cssnano-config)
30
- * [Cypress](/packages/cypress-config)
31
- * [ESLint](/packages/eslint-config)
32
- * [Markdownlint](/packages/markdownlint-config)
33
- * [PostCSS](/packages/postcss-config)
34
- * [Prettier](/packages/prettier-config)
35
- * [Remark Lint](/packages/remark-config)
36
- * [Standard Version](/packages/standard-version-config)
37
- * [Stylelint](/packages/stylelint-config)
38
- * [Tools](/packages/tools)
39
- * [Webpack](/packages/webpack-config)
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.2",
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.2",
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.9.0",
31
- "npm": ">=10.1.0"
30
+ "node": ">=20.12.0",
31
+ "npm": ">=10.5.0"
32
32
  },
33
- "gitHead": "ae949fa5972d2dae69398f60c2fc25be0d97e8d3"
33
+ "gitHead": "7865692c3fc19780e205b3e699d6a8e153f2869a",
34
+ "type": "module"
34
35
  }