@anolilab/stylelint-config 5.1.1 → 6.0.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 (3) hide show
  1. package/CHANGELOG.md +47 -1
  2. package/package.json +14 -13
  3. package/skip.js +7 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,50 @@
1
+ ## @anolilab/stylelint-config [6.0.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/stylelint-config@6.0.0...@anolilab/stylelint-config@6.0.1) (2023-07-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * included 'skip.js' in package.json for several packages ([1c84b33](https://github.com/anolilab/javascript-style-guide/commit/1c84b33435abc75666214632eba4566f36c78e1a))
7
+
8
+
9
+ ### Miscellaneous Chores
10
+
11
+ * **deps:** update dependency stylelint to v15.10.2 ([061c2cf](https://github.com/anolilab/javascript-style-guide/commit/061c2cff2e5b02d1decd2c01a07136cb042be7a9))
12
+ * Upgrade postcss version in devDependencies ([9da3b7d](https://github.com/anolilab/javascript-style-guide/commit/9da3b7d838dfff0417443119b21071e64930b19e))
13
+
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * **@anolilab/package-json-utils:** upgraded to 3.0.2
19
+ * **browserslist-config-anolilab:** upgraded to 5.0.1
20
+ * **@anolilab/semantic-release-preset:** upgraded to 6.0.2
21
+
22
+ ## @anolilab/stylelint-config [6.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/stylelint-config@5.1.1...@anolilab/stylelint-config@6.0.0) (2023-07-18)
23
+
24
+
25
+ ### ⚠ BREAKING CHANGES
26
+
27
+ * fixing broken releases that semantic-release did create
28
+ Signed-off-by: prisis <d.bannert@anolilab.de>
29
+
30
+ ### Bug Fixes
31
+
32
+ * fixed broken releases ([d46de22](https://github.com/anolilab/javascript-style-guide/commit/d46de22a999cc09cc46f9a4d4e7682441705a861))
33
+ * update node version ([9a22309](https://github.com/anolilab/javascript-style-guide/commit/9a22309775cd2219320eed903ac3e22f66ffbe94))
34
+
35
+
36
+ ### Miscellaneous Chores
37
+
38
+ * "Update package versions in pnpm-lock.yaml" ([9c24c65](https://github.com/anolilab/javascript-style-guide/commit/9c24c6549de3f3df60fc4ca3cef3e8759da40a8e))
39
+
40
+
41
+
42
+ ### Dependencies
43
+
44
+ * **@anolilab/package-json-utils:** upgraded to 3.0.1
45
+ * **browserslist-config-anolilab:** upgraded to 5.0.0
46
+ * **@anolilab/semantic-release-preset:** upgraded to 6.0.1
47
+
1
48
  ## @anolilab/stylelint-config [5.1.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/stylelint-config@5.1.0...@anolilab/stylelint-config@5.1.1) (2023-07-05)
2
49
 
3
50
 
@@ -6,7 +53,6 @@
6
53
  * Refactor async functions to use async/await and update tsconfig.json ([2a59d6e](https://github.com/anolilab/javascript-style-guide/commit/2a59d6e0d06a5a37c92b222961acbe9f17578f26))
7
54
 
8
55
 
9
-
10
56
  ### Dependencies
11
57
 
12
58
  * **@anolilab/package-json-utils:** upgraded to 2.0.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/stylelint-config",
3
- "version": "5.1.1",
3
+ "version": "6.0.1",
4
4
  "description": "Stylelint shareable config for the Anolilab stylesheet guide.",
5
5
  "keywords": [
6
6
  "css",
@@ -87,7 +87,8 @@
87
87
  "main": "index.js",
88
88
  "module": "index.mjs",
89
89
  "files": [
90
- "dist/**",
90
+ "dist",
91
+ "skip.js",
91
92
  "README.md",
92
93
  "CHANGELOG.md",
93
94
  "LICENSE.md",
@@ -103,33 +104,33 @@
103
104
  "test:coverage": "vitest --config ./vitest.config.ts --run --coverage"
104
105
  },
105
106
  "dependencies": {
106
- "@anolilab/package-json-utils": "2.0.1",
107
+ "@anolilab/package-json-utils": "3.0.2",
107
108
  "@ronilaukkarinen/stylelint-a11y": "^1.2.7",
108
- "browserslist-config-anolilab": "4.2.1",
109
+ "browserslist-config-anolilab": "5.0.1",
109
110
  "stylelint-config-clean-order": "^5.0.1",
110
- "stylelint-config-standard": "^33.0.0",
111
+ "stylelint-config-standard": "^34.0.0",
111
112
  "stylelint-declaration-block-no-ignored-properties": "^2.7.0",
112
113
  "stylelint-high-performance-animation": "^1.8.0",
113
- "stylelint-no-unsupported-browser-features": "^6.1.0",
114
+ "stylelint-no-unsupported-browser-features": "^7.0.0",
114
115
  "stylelint-require-units": "^1.0.2",
115
116
  "stylelint-selector-no-empty": "^1.0.9",
116
117
  "tsup": "^7.1.0",
117
- "vitest": "^0.32.4"
118
+ "vitest": "^0.33.0"
118
119
  },
119
120
  "devDependencies": {
120
- "@anolilab/semantic-release-preset": "5.0.1",
121
- "postcss": "^8.4.24",
121
+ "@anolilab/semantic-release-preset": "6.0.2",
122
+ "postcss": "^8.4.27",
122
123
  "rimraf": "^5.0.1",
123
- "semantic-release": "^21.0.6",
124
- "stylelint": "15.9.0",
125
- "vitest": "^0.32.4"
124
+ "semantic-release": "^21.0.7",
125
+ "stylelint": "15.10.2",
126
+ "vitest": "^0.33.0"
126
127
  },
127
128
  "peerDependencies": {
128
129
  "postcss": "^8.4.18",
129
130
  "stylelint": "^15.0.0"
130
131
  },
131
132
  "engines": {
132
- "node": ">=16"
133
+ "node": ">=18"
133
134
  },
134
135
  "publishConfig": {
135
136
  "access": "public",
package/skip.js ADDED
@@ -0,0 +1,7 @@
1
+ if (process.env.SKIP_BUILD) {
2
+ // eslint-disable-next-line unicorn/no-process-exit
3
+ process.exit(0);
4
+ } else {
5
+ // eslint-disable-next-line unicorn/no-process-exit
6
+ process.exit(1);
7
+ }