@workleap/stylelint-configs 2.1.9 → 2.1.11

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,5 +1,17 @@
1
1
  # @workleap/stylelint-config
2
2
 
3
+ ## 2.1.11
4
+
5
+ ### Patch Changes
6
+
7
+ - [#449](https://github.com/workleap/wl-web-configs/pull/449) [`33582c1`](https://github.com/workleap/wl-web-configs/commit/33582c1c96ae8dc4c01afa3893219b4755435028) Thanks [@patricklafrance](https://github.com/patricklafrance)! - Updated dependencies to their latest versions.
8
+
9
+ ## 2.1.10
10
+
11
+ ### Patch Changes
12
+
13
+ - [#425](https://github.com/workleap/wl-web-configs/pull/425) [`8de3e5a`](https://github.com/workleap/wl-web-configs/commit/8de3e5a26effe1f00cb905b4be5a24a961f50c5b) Thanks [@claude](https://github.com/apps/claude)! - Updated dependencies to their latest versions. Migrated `@workleap/rsbuild-configs` to `@rsbuild/core` 2.x, `@rspack/core` 2.x, and `@rsbuild/plugin-react` 2.x — `removeAvailableModules` was removed from the rspack `Optimization` type and `reactRefreshOptions.overlay` was removed from the react plugin (overlay is now controlled solely via `dev.client.overlay`).
14
+
3
15
  ## 2.1.9
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "@workleap/stylelint-configs",
4
4
  "author": "Workleap",
5
5
  "description": "Workleap recommended Stylelint configurations.",
6
- "version": "2.1.9",
6
+ "version": "2.1.11",
7
7
  "license": "Apache-2.0",
8
8
  "publishConfig": {
9
9
  "access": "public",
@@ -27,7 +27,7 @@
27
27
  "directory": "packages/stylelint-configs"
28
28
  },
29
29
  "peerDependencies": {
30
- "prettier": "^3.8.1",
30
+ "prettier": "^3.9.4",
31
31
  "stylelint": "^16.26.1"
32
32
  },
33
33
  "peerDependenciesMeta": {
@@ -44,17 +44,17 @@
44
44
  },
45
45
  "devDependencies": {
46
46
  "@eslint/js": "9.39.2",
47
- "@types/node": "25.5.0",
48
- "@typescript-eslint/parser": "8.58.0",
49
- "@typescript/native-preview": "7.0.0-dev.20260331.1",
47
+ "@types/node": "26.1.0",
48
+ "@typescript-eslint/parser": "8.63.0",
49
+ "@typescript/native-preview": "7.0.0-dev.20260512.1",
50
50
  "eslint": "9.39.2",
51
- "prettier": "3.8.1",
51
+ "prettier": "3.9.4",
52
52
  "rimraf": "6.1.3",
53
53
  "stylelint": "16.26.1",
54
- "typescript": "6.0.2",
55
- "typescript-eslint": "8.58.0",
56
- "@workleap/eslint-configs": "2.0.1",
57
- "@workleap/typescript-configs": "4.0.0"
54
+ "typescript": "6.0.3",
55
+ "typescript-eslint": "8.63.0",
56
+ "@workleap/eslint-configs": "2.0.4",
57
+ "@workleap/typescript-configs": "5.0.0"
58
58
  },
59
59
  "scripts": {
60
60
  "prebuild": "pnpm rimraf dist",
package/src/index.ts CHANGED
@@ -75,7 +75,7 @@ const config: Config = {
75
75
  }
76
76
  };
77
77
 
78
- // Using TypeScript "export" keyword until StyleLint support ESM.
79
- // Otherwise we must deal with a weird CommonJS output from esbuild which is not worth it.
80
- // For more info, see: https://github.com/evanw/esbuild/issues/1079
78
+ // Using TypeScript "export =" until Stylelint supports ESM configs.
79
+ // It's the only syntax emitting `module.exports = config`, which Stylelint
80
+ // expects since it loads configs via require().
81
81
  export = config;