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.
@@ -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.4',
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.4',
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.4',
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.4',
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.4',
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.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.5",
70
+ "ts-data-forge": "^3.1.0",
71
71
  "tsx": "^4.20.4"
72
72
  },
73
73
  "devDependencies": {
74
- "@eslint/js": "^9.31.0",
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.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",
89
89
  "cspell": "^9.2.0",
90
90
  "dedent": "^1.6.0",
91
- "eslint": "^9.33.0",
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.46.2",
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.9",
111
- "typedoc-plugin-markdown": "^4.8.0",
111
+ "typedoc": "^0.28.10",
112
+ "typedoc-plugin-markdown": "^4.8.1",
112
113
  "typescript": "^5.9.2",
113
- "typescript-eslint": "^8.39.0",
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
  }
@@ -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.4',
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.4',
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.4',
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.4',
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.4',
42
42
  args: {
43
43
  // required args
44
44
  targetDirectory: cmd.positional({