@darksheep/eslint 6.3.0 → 6.3.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [6.3.1](https://github.com/DarkSheepSoftware/eslint/compare/v6.3.0...v6.3.1) (2024-09-10)
4
+
5
+
6
+ ### 🩹 Fixes
7
+
8
+ * Make eslint peer dependency optional ([4c915d5](https://github.com/DarkSheepSoftware/eslint/commit/4c915d53cbac4ba3e9009acb773de0133f621850))
9
+
3
10
  ## [6.3.0](https://github.com/DarkSheepSoftware/eslint/compare/v6.2.0...v6.3.0) (2024-09-10)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@darksheep/eslint",
3
- "version": "6.3.0",
3
+ "version": "6.3.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/DarkSheepSoftware/eslint"
@@ -52,17 +52,17 @@
52
52
  "type-fest": "~4.26.0",
53
53
  "typescript": "~5.6.0"
54
54
  },
55
- "peerDependencies": {
56
- "eslint": "~9.10.0"
57
- },
58
55
  "peerDependenciesMeta": {
56
+ "eslint": {
57
+ "optional": true
58
+ },
59
59
  "typescript": {
60
60
  "optional": true
61
61
  }
62
62
  },
63
63
  "packageManager": "yarn@4.4.1",
64
64
  "engines": {
65
- "node": "^20 || ^21 || ^22"
65
+ "node": "^20 || ^22"
66
66
  },
67
67
  "volta": {
68
68
  "node": "22.8.0",
@@ -1,2 +1,2 @@
1
- export default config;
2
- declare const config: import("eslint").Linter.FlatConfig[];
1
+ declare const _default: import("eslint").Linter.FlatConfig[];
2
+ export default _default;