ts-repo-utils 6.0.2 → 6.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 '../node-global.mjs';
10
10
 
11
11
  const cmdDef = cmd.command({
12
12
  name: 'assert-repo-is-clean-cli',
13
- version: '6.0.2',
13
+ version: '6.0.3',
14
14
  args: {
15
15
  silent: cmd.flag({
16
16
  long: 'silent',
@@ -10,7 +10,7 @@ import '../node-global.mjs';
10
10
 
11
11
  const cmdDef = cmd.command({
12
12
  name: 'check-should-run-type-checks-cli',
13
- version: '6.0.2',
13
+ version: '6.0.3',
14
14
  args: {
15
15
  pathsIgnore: cmd.multioption({
16
16
  long: 'paths-ignore',
@@ -9,7 +9,7 @@ import '../node-global.mjs';
9
9
 
10
10
  const cmdDef = cmd.command({
11
11
  name: 'format-diff-from-cli',
12
- version: '6.0.2',
12
+ version: '6.0.3',
13
13
  args: {
14
14
  base: cmd.positional({
15
15
  type: cmd.string,
@@ -9,7 +9,7 @@ import '../node-global.mjs';
9
9
 
10
10
  const cmdDef = cmd.command({
11
11
  name: 'format-untracked-cli',
12
- version: '6.0.2',
12
+ version: '6.0.3',
13
13
  args: {
14
14
  silent: cmd.flag({
15
15
  long: 'silent',
@@ -31,7 +31,7 @@ const nonEmptyArray = (t, commandName) =>
31
31
  });
32
32
  const cmdDef = cmd.command({
33
33
  name: 'gen-index-ts-cli',
34
- version: '6.0.2',
34
+ version: '6.0.3',
35
35
  args: {
36
36
  // required args
37
37
  targetDirectory: cmd.positional({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-repo-utils",
3
- "version": "6.0.2",
3
+ "version": "6.0.3",
4
4
  "private": false,
5
5
  "keywords": [
6
6
  "typescript"
@@ -67,7 +67,7 @@
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.5",
70
+ "ts-data-forge": "^3.1.0",
71
71
  "tsx": "^4.20.4"
72
72
  },
73
73
  "devDependencies": {
@@ -79,10 +79,10 @@
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.3",
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.2.1",
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",
@@ -107,10 +107,10 @@
107
107
  "semantic-release": "^24.2.7",
108
108
  "ts-type-forge": "^2.1.1",
109
109
  "tslib": "^2.8.1",
110
- "typedoc": "^0.28.9",
110
+ "typedoc": "^0.28.10",
111
111
  "typedoc-plugin-markdown": "^4.8.0",
112
112
  "typescript": "^5.9.2",
113
- "typescript-eslint": "^8.39.0",
113
+ "typescript-eslint": "^8.39.1",
114
114
  "vitest": "^3.2.4"
115
115
  },
116
116
  "engines": {
@@ -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: '6.0.2',
8
+ version: '6.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: '6.0.2',
8
+ version: '6.0.3',
9
9
  args: {
10
10
  pathsIgnore: cmd.multioption({
11
11
  long: 'paths-ignore',
@@ -5,7 +5,7 @@ import { formatDiffFrom } from '../functions/index.mjs';
5
5
 
6
6
  const cmdDef = cmd.command({
7
7
  name: 'format-diff-from-cli',
8
- version: '6.0.2',
8
+ version: '6.0.3',
9
9
  args: {
10
10
  base: cmd.positional({
11
11
  type: cmd.string,
@@ -5,7 +5,7 @@ import { formatUntracked } from '../functions/index.mjs';
5
5
 
6
6
  const cmdDef = cmd.command({
7
7
  name: 'format-untracked-cli',
8
- version: '6.0.2',
8
+ version: '6.0.3',
9
9
  args: {
10
10
  silent: cmd.flag({
11
11
  long: 'silent',
@@ -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: '6.0.2',
41
+ version: '6.0.3',
42
42
  args: {
43
43
  // required args
44
44
  targetDirectory: cmd.positional({