ts-repo-utils 6.0.2 → 6.0.4
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/dist/cmd/assert-repo-is-clean.mjs +1 -1
- package/dist/cmd/check-should-run-type-checks.mjs +1 -1
- package/dist/cmd/format-diff-from.mjs +1 -1
- package/dist/cmd/format-untracked.mjs +1 -1
- package/dist/cmd/gen-index-ts.mjs +1 -1
- package/package.json +14 -10
- package/src/cmd/assert-repo-is-clean.mts +1 -1
- package/src/cmd/check-should-run-type-checks.mts +1 -1
- package/src/cmd/format-diff-from.mts +1 -1
- package/src/cmd/format-untracked.mts +1 -1
- package/src/cmd/gen-index-ts.mts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-repo-utils",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript"
|
|
@@ -67,11 +67,11 @@
|
|
|
67
67
|
"fast-glob": "^3.3.3",
|
|
68
68
|
"micromatch": "^4.0.8",
|
|
69
69
|
"prettier": "^3.6.2",
|
|
70
|
-
"ts-data-forge": "^3.0
|
|
70
|
+
"ts-data-forge": "^3.1.0",
|
|
71
71
|
"tsx": "^4.20.4"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
|
-
"@eslint/js": "^9.
|
|
74
|
+
"@eslint/js": "^9.34.0",
|
|
75
75
|
"@rollup/plugin-replace": "^6.0.2",
|
|
76
76
|
"@rollup/plugin-strip": "^3.0.4",
|
|
77
77
|
"@rollup/plugin-typescript": "^12.1.4",
|
|
@@ -79,16 +79,16 @@
|
|
|
79
79
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
80
80
|
"@semantic-release/exec": "^7.1.0",
|
|
81
81
|
"@semantic-release/git": "^10.0.1",
|
|
82
|
-
"@semantic-release/github": "^11.0.
|
|
82
|
+
"@semantic-release/github": "^11.0.4",
|
|
83
83
|
"@semantic-release/npm": "^12.0.2",
|
|
84
84
|
"@semantic-release/release-notes-generator": "^14.0.3",
|
|
85
|
-
"@types/node": "^24.
|
|
85
|
+
"@types/node": "^24.3.0",
|
|
86
86
|
"@vitest/coverage-v8": "^3.2.4",
|
|
87
87
|
"@vitest/ui": "^3.2.4",
|
|
88
88
|
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
89
89
|
"cspell": "^9.2.0",
|
|
90
90
|
"dedent": "^1.6.0",
|
|
91
|
-
"eslint": "^9.
|
|
91
|
+
"eslint": "^9.34.0",
|
|
92
92
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
93
93
|
"eslint-plugin-array-func": "5.0.2",
|
|
94
94
|
"eslint-plugin-functional": "9.0.2",
|
|
@@ -100,19 +100,23 @@
|
|
|
100
100
|
"eslint-plugin-vitest": "0.5.4",
|
|
101
101
|
"markdownlint-cli2": "^0.18.1",
|
|
102
102
|
"npm-run-all2": "^8.0.4",
|
|
103
|
+
"prettier": "^3.6.2",
|
|
103
104
|
"prettier-plugin-jsdoc": "^1.3.3",
|
|
104
105
|
"prettier-plugin-organize-imports": "^4.2.0",
|
|
105
106
|
"prettier-plugin-packagejson": "^2.5.19",
|
|
106
|
-
"rollup": "^4.
|
|
107
|
+
"rollup": "^4.48.0",
|
|
107
108
|
"semantic-release": "^24.2.7",
|
|
108
109
|
"ts-type-forge": "^2.1.1",
|
|
109
110
|
"tslib": "^2.8.1",
|
|
110
|
-
"typedoc": "^0.28.
|
|
111
|
-
"typedoc-plugin-markdown": "^4.8.
|
|
111
|
+
"typedoc": "^0.28.10",
|
|
112
|
+
"typedoc-plugin-markdown": "^4.8.1",
|
|
112
113
|
"typescript": "^5.9.2",
|
|
113
|
-
"typescript-eslint": "^8.
|
|
114
|
+
"typescript-eslint": "^8.40.0",
|
|
114
115
|
"vitest": "^3.2.4"
|
|
115
116
|
},
|
|
117
|
+
"peerDependencies": {
|
|
118
|
+
"prettier": "^3.6.2"
|
|
119
|
+
},
|
|
116
120
|
"engines": {
|
|
117
121
|
"node": ">=20.11.0"
|
|
118
122
|
}
|
package/src/cmd/gen-index-ts.mts
CHANGED