repomind 0.9.2 → 0.10.0
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 +17 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -89528,7 +89528,7 @@ ${prefixed}`);
|
|
|
89528
89528
|
setPhase("error-commit");
|
|
89529
89529
|
return;
|
|
89530
89530
|
}
|
|
89531
|
-
if (deps.captureCommittedDiff && deps.verifyCommitIntegrity && deps.getRepoRoot && deps.runGitReset) {
|
|
89531
|
+
if (!deps.skipVerification && deps.captureCommittedDiff && deps.verifyCommitIntegrity && deps.getRepoRoot && deps.runGitReset) {
|
|
89532
89532
|
setPhase("verifying");
|
|
89533
89533
|
try {
|
|
89534
89534
|
const repoRoot = await deps.getRepoRoot();
|
|
@@ -89856,6 +89856,7 @@ async function commitCommand() {
|
|
|
89856
89856
|
}
|
|
89857
89857
|
const fileConfig = await readRepoConfig();
|
|
89858
89858
|
const instructions = await resolveInstructions("commit");
|
|
89859
|
+
const skipVerification = process.argv.includes("--no-verify");
|
|
89859
89860
|
let exitCode = 0;
|
|
89860
89861
|
let completedMessage = "";
|
|
89861
89862
|
let errorMessage = "";
|
|
@@ -89874,7 +89875,8 @@ async function commitCommand() {
|
|
|
89874
89875
|
getRepoRoot,
|
|
89875
89876
|
runGitReset,
|
|
89876
89877
|
fileConfig,
|
|
89877
|
-
instructionsOverride: instructions
|
|
89878
|
+
instructionsOverride: instructions,
|
|
89879
|
+
skipVerification
|
|
89878
89880
|
},
|
|
89879
89881
|
onExit: (code, message, error4) => {
|
|
89880
89882
|
exitCode = code;
|
|
@@ -91467,7 +91469,8 @@ ${body}`;
|
|
|
91467
91469
|
log4(`repoRoot: ${repoRoot}`);
|
|
91468
91470
|
setPhase("verifying");
|
|
91469
91471
|
await deps.commitViaWorktree(repoRoot, worktreeGroups, {
|
|
91470
|
-
originalDiff: originalRawDiff
|
|
91472
|
+
originalDiff: originalRawDiff,
|
|
91473
|
+
skipVerification: deps.skipVerification
|
|
91471
91474
|
});
|
|
91472
91475
|
log4("commitViaWorktree done (verified)");
|
|
91473
91476
|
let hashes = [];
|
|
@@ -91798,6 +91801,7 @@ async function runGitCommit2(message) {
|
|
|
91798
91801
|
async function splitCommand() {
|
|
91799
91802
|
const fileConfig = await readRepoConfig();
|
|
91800
91803
|
const useStaged = !process.argv.includes("--all");
|
|
91804
|
+
const skipVerification = process.argv.includes("--no-verify");
|
|
91801
91805
|
const instructions = await resolveInstructions("split");
|
|
91802
91806
|
let exitCode = 0;
|
|
91803
91807
|
let completedCommits = [];
|
|
@@ -91827,7 +91831,8 @@ async function splitCommand() {
|
|
|
91827
91831
|
getRepoRoot,
|
|
91828
91832
|
fileConfig,
|
|
91829
91833
|
instructionsOverride: instructions,
|
|
91830
|
-
useStaged
|
|
91834
|
+
useStaged,
|
|
91835
|
+
skipVerification
|
|
91831
91836
|
},
|
|
91832
91837
|
onExit: (code, commits, error4) => {
|
|
91833
91838
|
exitCode = code;
|
|
@@ -92024,6 +92029,10 @@ var COMMAND_HELP = {
|
|
|
92024
92029
|
name: "--instructions [texto]",
|
|
92025
92030
|
description: 'Instru\xE7\xF5es pontuais para esta gera\xE7\xE3o (ex: "foca na parte de auth"). Sem texto abre um editor interativo.'
|
|
92026
92031
|
},
|
|
92032
|
+
{
|
|
92033
|
+
name: "--no-verify",
|
|
92034
|
+
description: "Pular verifica\xE7\xE3o de integridade do diff p\xF3s-commit"
|
|
92035
|
+
},
|
|
92027
92036
|
{
|
|
92028
92037
|
name: "--verbose",
|
|
92029
92038
|
alias: "-v",
|
|
@@ -92042,6 +92051,10 @@ var COMMAND_HELP = {
|
|
|
92042
92051
|
name: "--instructions [texto]",
|
|
92043
92052
|
description: 'Instru\xE7\xF5es pontuais para esta gera\xE7\xE3o (ex: "separa migration do model"). Sem texto abre um editor interativo.'
|
|
92044
92053
|
},
|
|
92054
|
+
{
|
|
92055
|
+
name: "--no-verify",
|
|
92056
|
+
description: "Pular verifica\xE7\xE3o de integridade do diff p\xF3s-commit"
|
|
92057
|
+
},
|
|
92045
92058
|
{
|
|
92046
92059
|
name: "--verbose",
|
|
92047
92060
|
alias: "-v",
|