ts-repo-utils 8.0.0 → 8.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: '8.0.0',
17
+ version: '8.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: '8.0.0',
17
+ version: '8.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: '8.0.0',
16
+ version: '8.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: '8.0.0',
16
+ version: '8.0.2',
17
17
  args: {
18
18
  excludeUntracked: cmd.flag({
19
19
  long: 'exclude-untracked',
@@ -32,7 +32,7 @@ const nonEmptyArray = (t, commandName) => cmd.extendType(cmd.array(t), {
32
32
  });
33
33
  const cmdDef = cmd.command({
34
34
  name: 'gen-index-ts-cli',
35
- version: '8.0.0',
35
+ version: '8.0.2',
36
36
  args: {
37
37
  // required args
38
38
  targetDirectory: cmd.positional({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-repo-utils",
3
- "version": "8.0.0",
3
+ "version": "8.0.2",
4
4
  "private": false,
5
5
  "keywords": [
6
6
  "typescript"
@@ -82,7 +82,7 @@
82
82
  },
83
83
  "dependencies": {
84
84
  "@nodelib/fs.walk": "^3.0.1",
85
- "@sindresorhus/is": "^7.1.1",
85
+ "@sindresorhus/is": "^7.2.0",
86
86
  "@types/micromatch": "^4.0.10",
87
87
  "cmd-ts": "^0.14.3",
88
88
  "fast-glob": "^3.3.3",
@@ -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: '8.0.0',
8
+ version: '8.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: '8.0.0',
8
+ version: '8.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: '8.0.0',
9
+ version: '8.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: '8.0.0',
9
+ version: '8.0.2',
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: '8.0.0',
42
+ version: '8.0.2',
43
43
  args: {
44
44
  // required args
45
45
  targetDirectory: cmd.positional({