repomind 1.0.0 → 1.0.1
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/index.js +13 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -77201,7 +77201,14 @@ async function commitViaWorktree(repoRoot, groups, options) {
|
|
|
77201
77201
|
await applyPatchInWorktree(wtPath, group.patches[j], repoRoot);
|
|
77202
77202
|
appliedPatches.push(group.patches[j]);
|
|
77203
77203
|
}
|
|
77204
|
-
await runGitAt(repoRoot, [
|
|
77204
|
+
await runGitAt(repoRoot, [
|
|
77205
|
+
"-C",
|
|
77206
|
+
wtPath,
|
|
77207
|
+
"commit",
|
|
77208
|
+
"--no-verify",
|
|
77209
|
+
"-m",
|
|
77210
|
+
group.message
|
|
77211
|
+
]);
|
|
77205
77212
|
actualCommitCount++;
|
|
77206
77213
|
log4(" committed");
|
|
77207
77214
|
}
|
|
@@ -77453,7 +77460,7 @@ var OutdatedCliError = class extends Error {
|
|
|
77453
77460
|
};
|
|
77454
77461
|
var CLI_VERSION_HEADER = "X-RepoMind-CLI-Version";
|
|
77455
77462
|
var CLI_LATEST_HEADER = "X-RepoMind-CLI-Latest";
|
|
77456
|
-
function createApiClient(baseUrl = DEFAULT_BASE_URL2, fetchFn = fetch, cliVersion = "1.0.
|
|
77463
|
+
function createApiClient(baseUrl = DEFAULT_BASE_URL2, fetchFn = fetch, cliVersion = "1.0.1") {
|
|
77457
77464
|
let latestCliVersion = null;
|
|
77458
77465
|
function baseHeaders(token) {
|
|
77459
77466
|
return {
|
|
@@ -86206,7 +86213,7 @@ async function readRepoConfig(cwd2 = process.cwd()) {
|
|
|
86206
86213
|
function getUpdateInfo() {
|
|
86207
86214
|
const latest = apiClient.getLatestCliVersion();
|
|
86208
86215
|
if (!latest) return void 0;
|
|
86209
|
-
const current = "1.0.
|
|
86216
|
+
const current = "1.0.1";
|
|
86210
86217
|
return { current, latest };
|
|
86211
86218
|
}
|
|
86212
86219
|
|
|
@@ -90086,7 +90093,7 @@ function CommitDoneSummary({
|
|
|
90086
90093
|
|
|
90087
90094
|
// src/commands/commit.ts
|
|
90088
90095
|
async function runGitCommit(message) {
|
|
90089
|
-
const proc = Bun.spawn(["git", "commit", "-m", message], {
|
|
90096
|
+
const proc = Bun.spawn(["git", "commit", "--no-verify", "-m", message], {
|
|
90090
90097
|
stdout: "inherit",
|
|
90091
90098
|
stderr: "inherit"
|
|
90092
90099
|
});
|
|
@@ -92332,7 +92339,7 @@ ${hookResult.output}` : "";
|
|
|
92332
92339
|
|
|
92333
92340
|
// src/commands/split.ts
|
|
92334
92341
|
async function runGitCommit2(message) {
|
|
92335
|
-
const proc = Bun.spawn(["git", "commit", "-m", message], {
|
|
92342
|
+
const proc = Bun.spawn(["git", "commit", "--no-verify", "-m", message], {
|
|
92336
92343
|
stdout: "pipe",
|
|
92337
92344
|
stderr: "pipe"
|
|
92338
92345
|
});
|
|
@@ -92702,7 +92709,7 @@ function CommandHelp({
|
|
|
92702
92709
|
|
|
92703
92710
|
// src/index.ts
|
|
92704
92711
|
function getVersion() {
|
|
92705
|
-
if ("1.0.
|
|
92712
|
+
if ("1.0.1") return "1.0.1";
|
|
92706
92713
|
try {
|
|
92707
92714
|
const require2 = createRequire(import.meta.url);
|
|
92708
92715
|
const pkg = require2("../package.json");
|