@sapphire/eslint-config 5.0.6-next.fc35dd86 → 5.0.6
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 +17 -0
- package/dist/cjs/index.cjs +2 -2
- package/dist/esm/index.mjs +2 -2
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
# [@sapphire/eslint-config@5.0.6](https://github.com/sapphiredev/utilities/compare/@sapphire/eslint-config@5.0.5...@sapphire/eslint-config@5.0.6) - (2025-05-08)
|
|
6
|
+
|
|
7
|
+
## 🐛 Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **eslint-config:** Update dependencies ([349a1d1](https://github.com/sapphiredev/utilities/commit/349a1d185eebdf950408f09fbbb85557c56b9107))
|
|
10
|
+
- **deps:** Update all non-major dependencies ([2237f1c](https://github.com/sapphiredev/utilities/commit/2237f1c6bcd768a6a07a63c703f426858c330e41)) ([#881](https://github.com/sapphiredev/utilities/pull/881) by @renovate[bot])
|
|
11
|
+
- **deps:** Update all non-major dependencies ([4bc5591](https://github.com/sapphiredev/utilities/commit/4bc55911f95456a2caee10a3588c7b5f1542fb00)) ([#879](https://github.com/sapphiredev/utilities/pull/879) by @renovate[bot])
|
|
12
|
+
- **deps:** Update all non-major dependencies ([1b923ad](https://github.com/sapphiredev/utilities/commit/1b923add4a4861105ade39d7e23db8cdcf824769)) ([#873](https://github.com/sapphiredev/utilities/pull/873) by @renovate[bot])
|
|
13
|
+
- **deps:** Update all non-major dependencies ([bc2f01c](https://github.com/sapphiredev/utilities/commit/bc2f01ce7d6932c9a0e02faa7cc081ecbae9640d)) ([#869](https://github.com/sapphiredev/utilities/pull/869) by @renovate[bot])
|
|
14
|
+
- **deps:** Update dependency eslint-config-prettier to v10 ([5d7bdbb](https://github.com/sapphiredev/utilities/commit/5d7bdbbc92175f249a0dcaa2b024bac91d41274b)) ([#860](https://github.com/sapphiredev/utilities/pull/860) by @renovate[bot])
|
|
15
|
+
- **deps:** Update all non-major dependencies ([ab1708e](https://github.com/sapphiredev/utilities/commit/ab1708e3c2866463316ba559d0102e414592dfed)) ([#858](https://github.com/sapphiredev/utilities/pull/858) by @renovate[bot])
|
|
16
|
+
- **deps:** Update all non-major dependencies ([083376a](https://github.com/sapphiredev/utilities/commit/083376aac55094dbeddb5194e8a8f0d794b8cceb)) ([#763](https://github.com/sapphiredev/utilities/pull/763) by @renovate[bot])
|
|
17
|
+
|
|
18
|
+
## 📝 Documentation
|
|
19
|
+
|
|
20
|
+
- Fix changelog urls ([a3da0ab](https://github.com/sapphiredev/utilities/commit/a3da0ab0cfd94f3823c792887e76bb898686a89b)) ([#759](https://github.com/sapphiredev/utilities/pull/759) by @favna)
|
|
21
|
+
|
|
5
22
|
# [@sapphire/eslint-config@5.0.5](https://github.com/sapphiredev/utilities/compare/@sapphire/eslint-config@5.0.4...@sapphire/eslint-config@5.0.5) - (2024-06-03)
|
|
6
23
|
|
|
7
24
|
## 🐛 Bug Fixes
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -6,7 +6,7 @@ var __commonJS = (cb, mod) => function __require() {
|
|
|
6
6
|
};
|
|
7
7
|
|
|
8
8
|
// src/index.ts
|
|
9
|
-
var
|
|
9
|
+
var require_index = __commonJS({
|
|
10
10
|
"src/index.ts"(exports, module) {
|
|
11
11
|
var eslintConfig = {
|
|
12
12
|
root: true,
|
|
@@ -344,6 +344,6 @@ var require_src = __commonJS({
|
|
|
344
344
|
module.exports = eslintConfig;
|
|
345
345
|
}
|
|
346
346
|
});
|
|
347
|
-
var index =
|
|
347
|
+
var index = require_index();
|
|
348
348
|
|
|
349
349
|
module.exports = index;
|
package/dist/esm/index.mjs
CHANGED
|
@@ -4,7 +4,7 @@ var __commonJS = (cb, mod) => function __require() {
|
|
|
4
4
|
};
|
|
5
5
|
|
|
6
6
|
// src/index.ts
|
|
7
|
-
var
|
|
7
|
+
var require_index = __commonJS({
|
|
8
8
|
"src/index.ts"(exports, module) {
|
|
9
9
|
var eslintConfig = {
|
|
10
10
|
root: true,
|
|
@@ -342,6 +342,6 @@ var require_src = __commonJS({
|
|
|
342
342
|
module.exports = eslintConfig;
|
|
343
343
|
}
|
|
344
344
|
});
|
|
345
|
-
var index =
|
|
345
|
+
var index = require_index();
|
|
346
346
|
|
|
347
347
|
export { index as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sapphire/eslint-config",
|
|
3
|
-
"version": "5.0.6
|
|
3
|
+
"version": "5.0.6",
|
|
4
4
|
"description": "Standard ESLint config for the Sapphire Community",
|
|
5
5
|
"author": "@sapphire",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"check-update": "cliff-jumper --dry-run"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
29
|
-
"@typescript-eslint/parser": "^7.
|
|
30
|
-
"eslint": "^8.57.
|
|
31
|
-
"eslint-config-prettier": "^
|
|
32
|
-
"eslint-plugin-prettier": "^5.
|
|
33
|
-
"prettier": "^3.
|
|
28
|
+
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
29
|
+
"@typescript-eslint/parser": "^7.18.0",
|
|
30
|
+
"eslint": "^8.57.1",
|
|
31
|
+
"eslint-config-prettier": "^10.1.3",
|
|
32
|
+
"eslint-plugin-prettier": "^5.4.0",
|
|
33
|
+
"prettier": "^3.5.3",
|
|
34
34
|
"typescript": "~5.4.5"
|
|
35
35
|
},
|
|
36
36
|
"repository": {
|
|
@@ -62,10 +62,10 @@
|
|
|
62
62
|
"access": "public"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@favware/cliff-jumper": "^
|
|
66
|
-
"@vitest/coverage-v8": "^
|
|
67
|
-
"tsup": "^8.
|
|
68
|
-
"typedoc-json-parser": "^10.
|
|
69
|
-
"vitest": "^
|
|
65
|
+
"@favware/cliff-jumper": "^6.0.0",
|
|
66
|
+
"@vitest/coverage-v8": "^3.1.3",
|
|
67
|
+
"tsup": "^8.4.0",
|
|
68
|
+
"typedoc-json-parser": "^10.2.0",
|
|
69
|
+
"vitest": "^3.1.3"
|
|
70
70
|
}
|
|
71
71
|
}
|