@anolilab/stylelint-config 6.0.0 → 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 +21 -0
  2. package/package.json +8 -7
  3. package/skip.js +7 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,24 @@
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
+
1
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)
2
23
 
3
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/stylelint-config",
3
- "version": "6.0.0",
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,9 +104,9 @@
103
104
  "test:coverage": "vitest --config ./vitest.config.ts --run --coverage"
104
105
  },
105
106
  "dependencies": {
106
- "@anolilab/package-json-utils": "3.0.1",
107
+ "@anolilab/package-json-utils": "3.0.2",
107
108
  "@ronilaukkarinen/stylelint-a11y": "^1.2.7",
108
- "browserslist-config-anolilab": "5.0.0",
109
+ "browserslist-config-anolilab": "5.0.1",
109
110
  "stylelint-config-clean-order": "^5.0.1",
110
111
  "stylelint-config-standard": "^34.0.0",
111
112
  "stylelint-declaration-block-no-ignored-properties": "^2.7.0",
@@ -117,11 +118,11 @@
117
118
  "vitest": "^0.33.0"
118
119
  },
119
120
  "devDependencies": {
120
- "@anolilab/semantic-release-preset": "6.0.1",
121
- "postcss": "^8.4.26",
121
+ "@anolilab/semantic-release-preset": "6.0.2",
122
+ "postcss": "^8.4.27",
122
123
  "rimraf": "^5.0.1",
123
124
  "semantic-release": "^21.0.7",
124
- "stylelint": "15.10.1",
125
+ "stylelint": "15.10.2",
125
126
  "vitest": "^0.33.0"
126
127
  },
127
128
  "peerDependencies": {
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
+ }