ts-repo-utils 10.0.1 → 10.0.2

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.
@@ -14,7 +14,7 @@ import '@sindresorhus/is';
14
14
 
15
15
  const cmdDef = cmd.command({
16
16
  name: 'assert-repo-is-clean-cli',
17
- version: '10.0.1',
17
+ version: '10.0.2',
18
18
  args: {
19
19
  silent: cmd.flag({
20
20
  long: 'silent',
@@ -14,7 +14,7 @@ import '@sindresorhus/is';
14
14
 
15
15
  const cmdDef = cmd.command({
16
16
  name: 'check-should-run-type-checks-cli',
17
- version: '10.0.1',
17
+ version: '10.0.2',
18
18
  args: {
19
19
  pathsIgnore: cmd.multioption({
20
20
  long: 'paths-ignore',
@@ -13,7 +13,7 @@ import '@sindresorhus/is';
13
13
 
14
14
  const cmdDef = cmd.command({
15
15
  name: 'format-diff-from-cli',
16
- version: '10.0.1',
16
+ version: '10.0.2',
17
17
  args: {
18
18
  base: cmd.positional({
19
19
  type: cmd.string,
@@ -13,7 +13,7 @@ import '@sindresorhus/is';
13
13
 
14
14
  const cmdDef = cmd.command({
15
15
  name: 'format-uncommitted-cli',
16
- version: '10.0.1',
16
+ version: '10.0.2',
17
17
  args: {
18
18
  excludeUntracked: cmd.flag({
19
19
  long: 'exclude-untracked',
@@ -35,7 +35,7 @@ cmd.array(t), {
35
35
  });
36
36
  const cmdDef = cmd.command({
37
37
  name: 'gen-index-ts-cli',
38
- version: '10.0.1',
38
+ version: '10.0.2',
39
39
  args: {
40
40
  // required args
41
41
  targetDirectory: cmd.positional({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-repo-utils",
3
- "version": "10.0.1",
3
+ "version": "10.0.2",
4
4
  "private": false,
5
5
  "keywords": [
6
6
  "typescript"
@@ -87,14 +87,15 @@
87
87
  "z:vitest:node": "pnpm run z:vitest --project='Node.js'"
88
88
  },
89
89
  "dependencies": {
90
- "@nodelib/fs.walk": "^3.0.1",
91
- "@sindresorhus/is": "^8.0.0",
92
- "@types/micromatch": "^4.0.10",
93
- "cmd-ts": "^0.15.0",
94
- "fast-glob": "^3.3.3",
95
- "micromatch": "^4.0.8",
96
- "ts-data-forge": "^6.9.4",
97
- "tsx": "^4.21.0"
90
+ "@nodelib/fs.walk": "3.0.1",
91
+ "@sindresorhus/is": "8.0.0",
92
+ "@types/micromatch": "4.0.10",
93
+ "cmd-ts": "0.15.0",
94
+ "fast-glob": "3.3.3",
95
+ "micromatch": "4.0.8",
96
+ "ts-data-forge": "6.9.4",
97
+ "ts-type-forge": "3.0.0",
98
+ "tsx": "4.21.0"
98
99
  },
99
100
  "devDependencies": {
100
101
  "@rollup/plugin-replace": "6.0.3",
@@ -125,9 +126,8 @@
125
126
  "prettier-plugin-packagejson": "3.0.2",
126
127
  "rollup": "4.60.2",
127
128
  "semantic-release": "25.0.3",
128
- "ts-codemod-lib": "^2.1.4",
129
- "ts-repo-utils": "^10.0.0",
130
- "ts-type-forge": "^3.0.0",
129
+ "ts-codemod-lib": "2.1.4",
130
+ "ts-repo-utils": "10.0.1",
131
131
  "tslib": "2.8.1",
132
132
  "typedoc": "0.28.19",
133
133
  "typedoc-github-theme": "0.4.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: '10.0.1',
8
+ version: '10.0.2',
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: '10.0.1',
8
+ version: '10.0.2',
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: '10.0.1',
9
+ version: '10.0.2',
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: '10.0.1',
9
+ version: '10.0.2',
10
10
  args: {
11
11
  excludeUntracked: cmd.flag({
12
12
  long: 'exclude-untracked',
@@ -46,7 +46,7 @@ const nonEmptyArray = <T extends cmd.Type<any, any>>(
46
46
 
47
47
  const cmdDef = cmd.command({
48
48
  name: 'gen-index-ts-cli',
49
- version: '10.0.1',
49
+ version: '10.0.2',
50
50
  args: {
51
51
  // required args
52
52
  targetDirectory: cmd.positional({