ts-repo-utils 7.0.1 → 7.0.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.
@@ -10,7 +10,7 @@ import 'child_process';
10
10
 
11
11
  const cmdDef = cmd.command({
12
12
  name: 'assert-repo-is-clean-cli',
13
- version: '7.0.1',
13
+ version: '7.0.3',
14
14
  args: {
15
15
  silent: cmd.flag({
16
16
  long: 'silent',
@@ -10,7 +10,7 @@ import 'child_process';
10
10
 
11
11
  const cmdDef = cmd.command({
12
12
  name: 'check-should-run-type-checks-cli',
13
- version: '7.0.1',
13
+ version: '7.0.3',
14
14
  args: {
15
15
  pathsIgnore: cmd.multioption({
16
16
  long: 'paths-ignore',
@@ -9,7 +9,7 @@ import 'child_process';
9
9
 
10
10
  const cmdDef = cmd.command({
11
11
  name: 'format-diff-from-cli',
12
- version: '7.0.1',
12
+ version: '7.0.3',
13
13
  args: {
14
14
  base: cmd.positional({
15
15
  type: cmd.string,
@@ -9,7 +9,7 @@ import 'child_process';
9
9
 
10
10
  const cmdDef = cmd.command({
11
11
  name: 'format-uncommitted-cli',
12
- version: '7.0.1',
12
+ version: '7.0.3',
13
13
  args: {
14
14
  excludeUntracked: cmd.flag({
15
15
  long: 'exclude-untracked',
@@ -28,7 +28,7 @@ const nonEmptyArray = (t, commandName) => cmd.extendType(cmd.array(t), {
28
28
  });
29
29
  const cmdDef = cmd.command({
30
30
  name: 'gen-index-ts-cli',
31
- version: '7.0.1',
31
+ version: '7.0.3',
32
32
  args: {
33
33
  // required args
34
34
  targetDirectory: cmd.positional({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-repo-utils",
3
- "version": "7.0.1",
3
+ "version": "7.0.3",
4
4
  "private": false,
5
5
  "keywords": [
6
6
  "typescript"
@@ -67,8 +67,8 @@
67
67
  "fast-glob": "^3.3.3",
68
68
  "micromatch": "^4.0.8",
69
69
  "prettier": "^3.6.2",
70
- "ts-data-forge": "^3.1.0",
71
- "tsx": "^4.20.4"
70
+ "ts-data-forge": "^3.2.0",
71
+ "tsx": "^4.20.5"
72
72
  },
73
73
  "devDependencies": {
74
74
  "@eslint/js": "^9.34.0",
@@ -79,7 +79,7 @@
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.4",
82
+ "@semantic-release/github": "^11.0.5",
83
83
  "@semantic-release/npm": "^12.0.2",
84
84
  "@semantic-release/release-notes-generator": "^14.0.3",
85
85
  "@types/node": "^24.3.0",
@@ -108,7 +108,7 @@
108
108
  "semantic-release": "^24.2.7",
109
109
  "ts-type-forge": "^2.1.1",
110
110
  "tslib": "^2.8.1",
111
- "typedoc": "^0.28.10",
111
+ "typedoc": "^0.28.11",
112
112
  "typedoc-plugin-markdown": "^4.8.1",
113
113
  "typescript": "^5.9.2",
114
114
  "typescript-eslint": "^8.40.0",
@@ -5,7 +5,7 @@ import { assertRepoIsClean } from '../functions/index.mjs';
5
5
 
6
6
  const cmdDef = cmd.command({
7
7
  name: 'assert-repo-is-clean-cli',
8
- version: '7.0.1',
8
+ version: '7.0.3',
9
9
  args: {
10
10
  silent: cmd.flag({
11
11
  long: 'silent',
@@ -5,7 +5,7 @@ import { checkShouldRunTypeChecks } from '../functions/index.mjs';
5
5
 
6
6
  const cmdDef = cmd.command({
7
7
  name: 'check-should-run-type-checks-cli',
8
- version: '7.0.1',
8
+ version: '7.0.3',
9
9
  args: {
10
10
  pathsIgnore: cmd.multioption({
11
11
  long: 'paths-ignore',
@@ -6,7 +6,7 @@ import { formatDiffFrom } from '../functions/index.mjs';
6
6
 
7
7
  const cmdDef = cmd.command({
8
8
  name: 'format-diff-from-cli',
9
- version: '7.0.1',
9
+ version: '7.0.3',
10
10
  args: {
11
11
  base: cmd.positional({
12
12
  type: cmd.string,
@@ -6,7 +6,7 @@ import { formatUncommittedFiles } from '../functions/index.mjs';
6
6
 
7
7
  const cmdDef = cmd.command({
8
8
  name: 'format-uncommitted-cli',
9
- version: '7.0.1',
9
+ version: '7.0.3',
10
10
  args: {
11
11
  excludeUntracked: cmd.flag({
12
12
  long: 'exclude-untracked',
@@ -38,7 +38,7 @@ const nonEmptyArray = <T extends cmd.Type<any, any>>(
38
38
 
39
39
  const cmdDef = cmd.command({
40
40
  name: 'gen-index-ts-cli',
41
- version: '7.0.1',
41
+ version: '7.0.3',
42
42
  args: {
43
43
  // required args
44
44
  targetDirectory: cmd.positional({