ts-repo-utils 10.1.1 → 10.1.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.1.1',
17
+ version: '10.1.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.1.1',
17
+ version: '10.1.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.1.1',
16
+ version: '10.1.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.1.1',
16
+ version: '10.1.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.1.1',
38
+ version: '10.1.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.1.1",
3
+ "version": "10.1.2",
4
4
  "private": false,
5
5
  "keywords": [
6
6
  "typescript"
@@ -49,7 +49,7 @@
49
49
  "codemod:uncommitted:readonly": "convert-to-readonly --uncommitted '{src,scripts,samples}/**/*.{mts,tsx}'",
50
50
  "cspell": "cspell \"**\" --gitignore --gitignore-root ./ --no-progress",
51
51
  "doc": "tsx ./scripts/cmd/gen-docs.mts",
52
- "doc:embed": "tsx ./scripts/cmd/embed-samples.mts",
52
+ "doc:embed": "tsx ./scripts/cmd/embed-examples.mts",
53
53
  "doc:preview": "vite preview --config ./configs/vite.doc.config.mts",
54
54
  "doc:watch": "typedoc --options ./configs/typedoc.config.mjs --watch",
55
55
  "fmt": "pnpm run z:format-uncommitted",
@@ -88,7 +88,7 @@
88
88
  },
89
89
  "dependencies": {
90
90
  "@nodelib/fs.walk": "^3.0.1",
91
- "@sindresorhus/is": "^8.0.0",
91
+ "@sindresorhus/is": "^8.1.0",
92
92
  "@types/micromatch": "^4.0.10",
93
93
  "cmd-ts": "^0.15.0",
94
94
  "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: '10.1.1',
8
+ version: '10.1.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.1.1',
8
+ version: '10.1.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.1.1',
9
+ version: '10.1.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.1.1',
9
+ version: '10.1.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.1.1',
49
+ version: '10.1.2',
50
50
  args: {
51
51
  // required args
52
52
  targetDirectory: cmd.positional({