ts-repo-utils 7.9.3 → 7.9.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/README.md +5 -0
- 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-uncommitted.mjs +1 -1
- package/dist/cmd/gen-index-ts.mjs +1 -1
- package/package.json +10 -6
- 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-uncommitted.mts +1 -1
- package/src/cmd/gen-index-ts.mts +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# ts-repo-utils
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/ts-repo-utils)
|
|
4
|
+
|
|
5
|
+
## Documentation
|
|
6
|
+
|
|
7
|
+
- API reference: <https://noshiro-pf.github.io/ts-repo-utils/>
|
|
8
|
+
|
|
4
9
|
[](https://www.npmjs.com/package/ts-repo-utils)
|
|
5
10
|
[](./LICENSE)
|
|
6
11
|
[](https://codecov.io/gh/noshiro-pf/ts-repo-utils)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-repo-utils",
|
|
3
|
-
"version": "7.9.
|
|
3
|
+
"version": "7.9.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript"
|
|
@@ -44,6 +44,8 @@
|
|
|
44
44
|
"cspell": "cspell \"**\" --gitignore --gitignore-root ./ --no-progress",
|
|
45
45
|
"doc": "tsx ./scripts/cmd/gen-docs.mts",
|
|
46
46
|
"doc:embed": "tsx ./scripts/cmd/embed-samples.mts",
|
|
47
|
+
"doc:preview": "vite preview --config ./configs/vite.doc.config.ts",
|
|
48
|
+
"doc:watch": "typedoc --options ./configs/typedoc.config.mjs --watch",
|
|
47
49
|
"fmt": "pnpm run z:format-uncommitted",
|
|
48
50
|
"fmt:diff": "pnpm run z:format-diff-from origin/main",
|
|
49
51
|
"fmt:full": "prettier --write .",
|
|
@@ -83,7 +85,7 @@
|
|
|
83
85
|
"cmd-ts": "^0.14.3",
|
|
84
86
|
"fast-glob": "^3.3.3",
|
|
85
87
|
"micromatch": "^4.0.8",
|
|
86
|
-
"prettier": "^3.
|
|
88
|
+
"prettier": "^3.7.3",
|
|
87
89
|
"ts-data-forge": "^5.0.1",
|
|
88
90
|
"tsx": "^4.20.6"
|
|
89
91
|
},
|
|
@@ -112,7 +114,7 @@
|
|
|
112
114
|
"markdownlint": "^0.39.0",
|
|
113
115
|
"markdownlint-cli2": "^0.19.1",
|
|
114
116
|
"npm-run-all2": "^8.0.4",
|
|
115
|
-
"prettier": "^3.
|
|
117
|
+
"prettier": "^3.7.3",
|
|
116
118
|
"prettier-plugin-organize-imports": "^4.3.0",
|
|
117
119
|
"prettier-plugin-packagejson": "^2.5.19",
|
|
118
120
|
"rollup": "^4.53.3",
|
|
@@ -121,14 +123,16 @@
|
|
|
121
123
|
"ts-type-forge": "^2.3.0",
|
|
122
124
|
"tslib": "^2.8.1",
|
|
123
125
|
"tsx": "^4.20.6",
|
|
124
|
-
"typedoc": "^0.28.
|
|
125
|
-
"typedoc-
|
|
126
|
+
"typedoc": "^0.28.15",
|
|
127
|
+
"typedoc-github-theme": "^0.3.1",
|
|
126
128
|
"typescript": "^5.9.3",
|
|
129
|
+
"vite": "^7.2.6",
|
|
127
130
|
"vitest": "^4.0.9"
|
|
128
131
|
},
|
|
129
132
|
"peerDependencies": {
|
|
130
|
-
"prettier": "^3.
|
|
133
|
+
"prettier": "^3.7.3"
|
|
131
134
|
},
|
|
135
|
+
"packageManager": "pnpm@10.24.0",
|
|
132
136
|
"volta": {
|
|
133
137
|
"node": "25.0.0",
|
|
134
138
|
"npm": "11.6.2"
|
package/src/cmd/gen-index-ts.mts
CHANGED