codemodctl 0.1.17 → 0.1.18

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.
package/dist/cli.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import "./codemod-cli-DailrcEf.js";
3
3
  import { analyzeCodeowners } from "./codeowner-analysis-DlwMGduk.js";
4
4
  import "./consistent-sharding-BfgFDhwr.js";
5
- import { analyzeDirectories } from "./directory-analysis-WCzArWS4.js";
5
+ import { analyzeDirectories } from "./directory-analysis-D4YprDWr.js";
6
6
  import { defineCommand, runMain } from "citty";
7
7
  import crypto from "node:crypto";
8
8
  import { $ } from "execa";
@@ -164,7 +164,7 @@ const gitCommand = defineCommand({
164
164
  name: "git",
165
165
  description: "Git operations"
166
166
  },
167
- subCommands: { createPr: createPrCommand }
167
+ subCommands: { "create-pr": createPrCommand }
168
168
  });
169
169
 
170
170
  //#endregion
@@ -61,7 +61,7 @@ function createDirectoryShards(filesByDirectory, shardSize, existingState) {
61
61
  shard: shardIndex + 1,
62
62
  shardCount,
63
63
  _meta_files: shardFiles.sort(),
64
- name: `${directory} ${shardIndex + 1}/${shardCount}`
64
+ name: `${directory} (${shardIndex + 1}/${shardCount})`
65
65
  });
66
66
  }
67
67
  }
package/dist/directory.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import "./codemod-cli-DailrcEf.js";
3
3
  import "./consistent-sharding-BfgFDhwr.js";
4
- import { analyzeDirectories, createDirectoryShards, groupFilesByDirectory } from "./directory-analysis-WCzArWS4.js";
4
+ import { analyzeDirectories, createDirectoryShards, groupFilesByDirectory } from "./directory-analysis-D4YprDWr.js";
5
5
 
6
6
  export { analyzeDirectories, createDirectoryShards, groupFilesByDirectory };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codemodctl",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "CLI tool and utilities for workflow engine operations, file sharding, and codeowner analysis",
5
5
  "type": "module",
6
6
  "exports": {