@anolilab/stylelint-config 7.0.6 → 7.0.7

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,19 @@
1
+ ## @anolilab/stylelint-config [7.0.7](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/stylelint-config@7.0.6...@anolilab/stylelint-config@7.0.7) (2025-10-02)
2
+
3
+ ### Bug Fixes
4
+
5
+ * add Prettier configuration and improve code formatting ([944ac53](https://github.com/anolilab/javascript-style-guide/commit/944ac539e849b952538e536bbe5cc6a992fb1212))
6
+
7
+ ### Miscellaneous Chores
8
+
9
+ * **deps:** update package dependencies to latest versions ([028b723](https://github.com/anolilab/javascript-style-guide/commit/028b7237222bfddb4f4ce43a1247f5a3ed9f2c68))
10
+ * update @visulima/packem to version 2.0.0-alpha.19 and add eslint-plugin-erasable-syntax-only@0.3.1\n\n- Updated all instances of @visulima/packem to the latest alpha version.\n- Added new dependency eslint-plugin-erasable-syntax-only for enhanced linting capabilities.\n- Updated devDependencies in various package.json files to ensure consistency across configurations. ([0d62091](https://github.com/anolilab/javascript-style-guide/commit/0d620916bbabb0d64266136978c0b038844e3bc7))
11
+
12
+
13
+ ### Dependencies
14
+
15
+ * **browserslist-config-anolilab:** upgraded to 6.0.4
16
+
1
17
  ## @anolilab/stylelint-config [7.0.6](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/stylelint-config@7.0.5...@anolilab/stylelint-config@7.0.6) (2025-09-05)
2
18
 
3
19
  ### Bug Fixes
package/index.cjs CHANGED
@@ -11,5 +11,8 @@ const config = [
11
11
  ];
12
12
 
13
13
  module.exports = {
14
- extends: [...config.map((element) => require.resolve(element)), "stylelint-config-clean-order"],
14
+ extends: [
15
+ ...config.map((element) => require.resolve(element)),
16
+ "stylelint-config-clean-order",
17
+ ],
15
18
  };
package/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
- import { fileURLToPath } from 'node:url';
2
- import path from 'node:path';
1
+ import { fileURLToPath } from "node:url";
2
+ import path from "node:path";
3
3
 
4
4
  const cconfig = [
5
5
  "./dist/config/best-practices.mjs",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/stylelint-config",
3
- "version": "7.0.6",
3
+ "version": "7.0.7",
4
4
  "description": "Stylelint shareable config for the Anolilab stylesheet guide.",
5
5
  "keywords": [
6
6
  "css",
@@ -180,17 +180,17 @@
180
180
  "index.mjs"
181
181
  ],
182
182
  "dependencies": {
183
- "browserslist-config-anolilab": "6.0.3",
184
- "stylelint-config-clean-order": "^7.0.0",
185
- "stylelint-config-standard": "^39.0.0",
186
- "stylelint-declaration-block-no-ignored-properties": "^2.8.0",
187
- "stylelint-high-performance-animation": "^1.11.0",
188
- "stylelint-no-unsupported-browser-features": "^8.0.4",
189
- "stylelint-require-units": "^2.0.0",
190
- "stylelint-selector-no-empty": "^1.0.9"
183
+ "browserslist-config-anolilab": "6.0.4",
184
+ "stylelint-config-clean-order": "catalog:lint",
185
+ "stylelint-config-standard": "catalog:lint",
186
+ "stylelint-declaration-block-no-ignored-properties": "catalog:lint",
187
+ "stylelint-high-performance-animation": "catalog:lint",
188
+ "stylelint-no-unsupported-browser-features": "catalog:lint",
189
+ "stylelint-require-units": "catalog:lint",
190
+ "stylelint-selector-no-empty": "catalog:lint"
191
191
  },
192
192
  "peerDependencies": {
193
- "postcss": "^8.4.49",
193
+ "postcss": "catalog:style",
194
194
  "stylelint": "^15.11.0 || 16.x"
195
195
  },
196
196
  "engines": {