@anolilab/stylelint-config 2.2.1 → 3.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 CHANGED
@@ -1,3 +1,27 @@
1
+ ## @anolilab/stylelint-config [3.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/stylelint-config@2.2.1...@anolilab/stylelint-config@3.0.0) (2022-02-15)
2
+
3
+
4
+ ### ⚠ BREAKING CHANGES
5
+
6
+ * remove old node version from our supported versions
7
+
8
+ Signed-off-by: prisis <d.bannert@anolilab.de>
9
+
10
+ ### Bug Fixes
11
+
12
+ * markdown lint ([24059d4](https://github.com/anolilab/javascript-style-guide/commit/24059d41ca682ca21b39ad7f6dff594be734329d))
13
+
14
+
15
+ ### Performance Improvements
16
+
17
+ * support for v12, v14 was removed from our supported versions of node ([83d6a80](https://github.com/anolilab/javascript-style-guide/commit/83d6a8058ed7791135aff03d4cd734327bb1b694))
18
+
19
+
20
+
21
+ ### Dependencies
22
+
23
+ * **browserslist-config-anolilab:** upgraded to 3.0.0
24
+
1
25
  ### @anolilab/stylelint-config [2.2.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/stylelint-config@2.2.0...@anolilab/stylelint-config@2.2.1) (2021-12-12)
2
26
 
3
27
 
package/README.md CHANGED
@@ -71,7 +71,7 @@ Add this command to your `package.json` scripts section
71
71
  ## Supported Node.js Versions
72
72
 
73
73
  Libraries in this ecosystem make the best effort to track
74
- [Node.js' release schedule](https://nodejs.org/en/about/releases/). Here's [a
74
+ [Node.js release schedule](https://nodejs.org/en/about/releases/). Heres [a
75
75
  post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
76
76
 
77
77
  Contributing
package/index.cjs CHANGED
@@ -11,6 +11,6 @@ const rules = [
11
11
  module.exports = {
12
12
  extends: rules.map(require.resolve),
13
13
  rules: {
14
- "indentation": 4,
15
- }
14
+ indentation: 4,
15
+ },
16
16
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/stylelint-config",
3
- "version": "2.2.1",
3
+ "version": "3.0.0",
4
4
  "description": "Stylelint shareable config for the Anolilab stylesheet guide.",
5
5
  "keywords": [
6
6
  "css",
@@ -47,7 +47,7 @@
47
47
  "postinstall": "node lib/postinstall.js"
48
48
  },
49
49
  "dependencies": {
50
- "browserslist-config-anolilab": "2.3.0",
50
+ "browserslist-config-anolilab": "3.0.0",
51
51
  "stylelint-a11y": "^1.2.3",
52
52
  "stylelint-config-rational-order": "^0.1.2",
53
53
  "stylelint-config-standard": "^23.0.0",
@@ -60,14 +60,14 @@
60
60
  "devDependencies": {
61
61
  "lodash": "^4.17.21",
62
62
  "postcss": "^8.3.11",
63
- "stylelint": "14.1.0"
63
+ "stylelint": "14.3.0"
64
64
  },
65
65
  "peerDependencies": {
66
66
  "postcss": "^8.3.11",
67
67
  "stylelint": "^14.0.0"
68
68
  },
69
69
  "engines": {
70
- "node": ">=12"
70
+ "node": ">=16"
71
71
  },
72
72
  "publishConfig": {
73
73
  "access": "public"
@@ -1,4 +1,4 @@
1
- const browserslist = require("browserslist-config-anolilab")
1
+ const browserslist = require("browserslist-config-anolilab");
2
2
 
3
3
  module.exports = {
4
4
  plugins: ["stylelint-no-unsupported-browser-features"],