ts-repo-utils 7.9.5 → 7.9.7

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.
@@ -13,7 +13,7 @@ import '@sindresorhus/is';
13
13
 
14
14
  const cmdDef = cmd.command({
15
15
  name: 'assert-repo-is-clean-cli',
16
- version: '7.9.5',
16
+ version: '7.9.7',
17
17
  args: {
18
18
  silent: cmd.flag({
19
19
  long: 'silent',
@@ -13,7 +13,7 @@ import '@sindresorhus/is';
13
13
 
14
14
  const cmdDef = cmd.command({
15
15
  name: 'check-should-run-type-checks-cli',
16
- version: '7.9.5',
16
+ version: '7.9.7',
17
17
  args: {
18
18
  pathsIgnore: cmd.multioption({
19
19
  long: 'paths-ignore',
@@ -12,7 +12,7 @@ import '@sindresorhus/is';
12
12
 
13
13
  const cmdDef = cmd.command({
14
14
  name: 'format-diff-from-cli',
15
- version: '7.9.5',
15
+ version: '7.9.7',
16
16
  args: {
17
17
  base: cmd.positional({
18
18
  type: cmd.string,
@@ -12,7 +12,7 @@ import '@sindresorhus/is';
12
12
 
13
13
  const cmdDef = cmd.command({
14
14
  name: 'format-uncommitted-cli',
15
- version: '7.9.5',
15
+ version: '7.9.7',
16
16
  args: {
17
17
  excludeUntracked: cmd.flag({
18
18
  long: 'exclude-untracked',
@@ -31,7 +31,7 @@ const nonEmptyArray = (t, commandName) => cmd.extendType(cmd.array(t), {
31
31
  });
32
32
  const cmdDef = cmd.command({
33
33
  name: 'gen-index-ts-cli',
34
- version: '7.9.5',
34
+ version: '7.9.7',
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": "7.9.5",
3
+ "version": "7.9.7",
4
4
  "private": false,
5
5
  "keywords": [
6
6
  "typescript"
@@ -63,21 +63,22 @@
63
63
  "md": "markdownlint-cli2",
64
64
  "prepare-release": "run-s sync-cli-versions fmt build doc",
65
65
  "sync-cli-versions": "tsx scripts/cmd/sync-cli-versions.mts",
66
- "test": "pnpm run z:vitest run",
67
- "test:cov": "pnpm run z:vitest run --coverage",
66
+ "test": "pnpm run z:vitest:node run",
67
+ "test:cov": "pnpm run z:vitest:node run --coverage",
68
68
  "test:cov:ui": "vite preview --outDir ./coverage",
69
- "test:ui": "pnpm run z:vitest --ui",
70
- "testw": "pnpm run z:vitest watch",
69
+ "test:ui": "pnpm run z:vitest:node --ui",
70
+ "testw": "pnpm run z:vitest:node watch",
71
71
  "tsc": "tsc --noEmit",
72
72
  "tscw": "tsc --noEmit --watch -p ./tsconfig.json",
73
73
  "type-check": "tsc --noEmit",
74
74
  "update-packages": "pnpm update --latest",
75
- "z:assert-repo-is-clean": "tsx ./src/cmd/assert-repo-is-clean.mjs",
76
- "z:check-should-run-type-checks": "tsx ./src/cmd/check-should-run-type-checks.mjs",
77
- "z:format-diff-from": "tsx ./src/cmd/format-diff-from.mjs",
78
- "z:format-uncommitted": "tsx ./src/cmd/format-uncommitted.mjs",
79
- "z:gen-index-ts": "tsx ./src/cmd/gen-index-ts.mjs",
80
- "z:vitest": "vitest --config ./configs/vitest.config.mts"
75
+ "z:assert-repo-is-clean": "tsx ./src/cmd/assert-repo-is-clean.mts",
76
+ "z:check-should-run-type-checks": "tsx ./src/cmd/check-should-run-type-checks.mts",
77
+ "z:format-diff-from": "tsx ./src/cmd/format-diff-from.mts",
78
+ "z:format-uncommitted": "tsx ./src/cmd/format-uncommitted.mts",
79
+ "z:gen-index-ts": "tsx ./src/cmd/gen-index-ts.mts",
80
+ "z:vitest": "vitest --config ./configs/vitest.config.mts",
81
+ "z:vitest:node": "vitest --config ./configs/vitest.config.mts --project='Node.js'"
81
82
  },
82
83
  "dependencies": {
83
84
  "@sindresorhus/is": "^7.1.1",
@@ -85,8 +86,7 @@
85
86
  "cmd-ts": "^0.14.3",
86
87
  "fast-glob": "^3.3.3",
87
88
  "micromatch": "^4.0.8",
88
- "prettier": "^3.7.3",
89
- "ts-data-forge": "^6.0.0",
89
+ "ts-data-forge": "^6.1.1",
90
90
  "tsx": "^4.21.0"
91
91
  },
92
92
  "devDependencies": {
@@ -98,43 +98,43 @@
98
98
  "@semantic-release/exec": "7.1.0",
99
99
  "@semantic-release/git": "10.0.1",
100
100
  "@semantic-release/github": "12.0.2",
101
- "@semantic-release/npm": "13.1.2",
101
+ "@semantic-release/npm": "13.1.3",
102
102
  "@semantic-release/release-notes-generator": "14.1.0",
103
- "@types/node": "24.10.1",
104
- "@vitest/coverage-v8": "4.0.14",
105
- "@vitest/ui": "4.0.14",
103
+ "@types/node": "25.0.3",
104
+ "@vitest/coverage-v8": "4.0.16",
105
+ "@vitest/ui": "4.0.16",
106
106
  "conventional-changelog-conventionalcommits": "9.1.0",
107
107
  "cspell": "9.4.0",
108
- "dedent": "1.7.0",
109
- "eslint": "9.39.1",
110
- "eslint-config-typed": "4.0.5",
111
- "fast-glob": "3.3.3",
108
+ "dedent": "1.7.1",
109
+ "eslint": "9.39.2",
110
+ "eslint-config-typed": "4.3.0",
112
111
  "github-settings-as-code": "1.0.6",
113
112
  "jiti": "2.6.1",
114
- "markdownlint": "0.39.0",
115
- "markdownlint-cli2": "0.19.1",
113
+ "markdownlint": "0.40.0",
114
+ "markdownlint-cli2": "0.20.0",
116
115
  "npm-run-all2": "8.0.4",
117
- "prettier": "3.7.3",
116
+ "prettier": "3.7.4",
118
117
  "prettier-plugin-organize-imports": "4.3.0",
119
118
  "prettier-plugin-packagejson": "2.5.20",
120
- "rollup": "4.53.3",
119
+ "rollup": "4.54.0",
121
120
  "semantic-release": "25.0.2",
122
- "ts-fortress": "6.1.0",
123
121
  "ts-type-forge": "2.3.0",
124
122
  "tslib": "2.8.1",
125
- "tsx": "4.20.6",
126
123
  "typedoc": "0.28.15",
127
124
  "typedoc-github-theme": "0.3.1",
128
125
  "typescript": "5.9.3",
129
- "vite": "7.2.6",
130
- "vitest": "4.0.14"
126
+ "vite": "7.3.0",
127
+ "vitest": "4.0.16"
131
128
  },
132
129
  "peerDependencies": {
133
- "prettier": "^3.7.3"
130
+ "prettier": ">=3.0.0"
134
131
  },
135
132
  "packageManager": "pnpm@10.24.0",
133
+ "engines": {
134
+ "node": ">=22",
135
+ "pnpm": ">=8.0.0"
136
+ },
136
137
  "volta": {
137
- "node": "25.0.0",
138
- "npm": "11.6.2"
138
+ "node": "25.2.1"
139
139
  }
140
140
  }
@@ -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.9.5',
8
+ version: '7.9.7',
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.9.5',
8
+ version: '7.9.7',
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.9.5',
9
+ version: '7.9.7',
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.9.5',
9
+ version: '7.9.7',
10
10
  args: {
11
11
  excludeUntracked: cmd.flag({
12
12
  long: 'exclude-untracked',
@@ -39,7 +39,7 @@ const nonEmptyArray = <T extends cmd.Type<any, any>>(
39
39
 
40
40
  const cmdDef = cmd.command({
41
41
  name: 'gen-index-ts-cli',
42
- version: '7.9.5',
42
+ version: '7.9.7',
43
43
  args: {
44
44
  // required args
45
45
  targetDirectory: cmd.positional({