ts-builds 2.5.1 → 2.5.3
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/eslint.config.fp.js +1 -4
- package/eslint.config.functype.js +0 -2
- package/package.json +6 -7
package/eslint.config.fp.js
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
// ESLint FP config: Base +
|
|
2
|
-
// Includes: no-let, immutable-data, prefer-immutable-types, etc.
|
|
1
|
+
// ESLint FP config: Base + strict TypeScript rules from eslint-config-functype
|
|
3
2
|
import js from "@eslint/js"
|
|
4
3
|
import functypeConfig from "eslint-config-functype"
|
|
5
|
-
import functional from "eslint-plugin-functional"
|
|
6
4
|
import prettierRecommended from "eslint-plugin-prettier/recommended"
|
|
7
5
|
import simpleImportSort from "eslint-plugin-simple-import-sort"
|
|
8
6
|
import globals from "globals"
|
|
@@ -26,7 +24,6 @@ export default [
|
|
|
26
24
|
{
|
|
27
25
|
plugins: {
|
|
28
26
|
"simple-import-sort": simpleImportSort,
|
|
29
|
-
functional,
|
|
30
27
|
},
|
|
31
28
|
languageOptions: {
|
|
32
29
|
globals: {
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
// Full functype support: prefer-option, prefer-either, prefer-fold, etc.
|
|
3
3
|
import js from "@eslint/js"
|
|
4
4
|
import functypeConfig from "eslint-config-functype"
|
|
5
|
-
import functional from "eslint-plugin-functional"
|
|
6
5
|
import functypePlugin from "eslint-plugin-functype"
|
|
7
6
|
import prettierRecommended from "eslint-plugin-prettier/recommended"
|
|
8
7
|
import simpleImportSort from "eslint-plugin-simple-import-sort"
|
|
@@ -27,7 +26,6 @@ export default [
|
|
|
27
26
|
{
|
|
28
27
|
plugins: {
|
|
29
28
|
"simple-import-sort": simpleImportSort,
|
|
30
|
-
functional,
|
|
31
29
|
functype: functypePlugin,
|
|
32
30
|
},
|
|
33
31
|
languageOptions: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-builds",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.3",
|
|
4
4
|
"description": "Shared TypeScript configuration files for library templates. Provides standardized ESLint, Prettier, Vitest, TypeScript, and build configs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -58,10 +58,9 @@
|
|
|
58
58
|
"@vitest/coverage-v8": "^4.1.0",
|
|
59
59
|
"@vitest/ui": "^4.1.0",
|
|
60
60
|
"cross-env": "^10.1.0",
|
|
61
|
-
"eslint": "^10.0
|
|
62
|
-
"eslint-config-functype": "^2.
|
|
63
|
-
"eslint-plugin-
|
|
64
|
-
"eslint-plugin-functype": "^2.0.0",
|
|
61
|
+
"eslint": "^10.1.0",
|
|
62
|
+
"eslint-config-functype": "^2.1.0",
|
|
63
|
+
"eslint-plugin-functype": "^2.1.0",
|
|
65
64
|
"eslint-plugin-prettier": "^5.5.5",
|
|
66
65
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
67
66
|
"globals": "^17.4.0",
|
|
@@ -69,11 +68,11 @@
|
|
|
69
68
|
"rimraf": "^6.1.3",
|
|
70
69
|
"ts-node": "^10.9.2",
|
|
71
70
|
"typescript": "^5.9.3",
|
|
72
|
-
"typescript-eslint": "^8.57.
|
|
71
|
+
"typescript-eslint": "^8.57.1",
|
|
73
72
|
"vitest": "^4.1.0"
|
|
74
73
|
},
|
|
75
74
|
"devDependencies": {
|
|
76
|
-
"tsdown": "^0.21.
|
|
75
|
+
"tsdown": "^0.21.4"
|
|
77
76
|
},
|
|
78
77
|
"peerDependencies": {
|
|
79
78
|
"tsdown": "^0.x",
|