@bugzy-ai/bugzy 1.18.2 → 1.18.3
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/index.cjs +6 -4
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.js +6 -4
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +6 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -4
- package/dist/index.js.map +1 -1
- package/dist/tasks/index.cjs +6 -4
- package/dist/tasks/index.cjs.map +1 -1
- package/dist/tasks/index.js +6 -4
- package/dist/tasks/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -2103,12 +2103,14 @@ This step helps correlate what the tests cover with what the application actuall
|
|
|
2103
2103
|
{
|
|
2104
2104
|
inline: true,
|
|
2105
2105
|
title: "Commit Analysis Results",
|
|
2106
|
-
content: `Commit
|
|
2106
|
+
content: `Commit analysis artifacts to the **parent project repository** (the workspace root).
|
|
2107
2107
|
|
|
2108
|
-
|
|
2109
|
-
2. Any generated CLAUDE.md draft (if the external repo was missing one)
|
|
2108
|
+
**IMPORTANT \u2014 Do NOT stage the \`tests\` submodule.** The \`tests/\` directory is an external git submodule. Any changes made inside it (e.g., \`reporters/parse-results.ts\`, \`tests/CLAUDE.md\`) will be committed and pushed to the external repo automatically by the post-execution handler. Staging the submodule in the parent would record a local-only commit SHA that doesn't exist on the remote, causing a broken reference.
|
|
2110
2109
|
|
|
2111
|
-
|
|
2110
|
+
**What to commit in the parent repo:**
|
|
2111
|
+
1. \`git add .bugzy/\` \u2014 the test codebase analysis report and runtime files
|
|
2112
|
+
2. Do NOT run \`git add .\` or \`git add tests\` \u2014 this would stage the submodule pointer
|
|
2113
|
+
3. \`git commit -m "chore: analyze external test codebase"\`
|
|
2112
2114
|
|
|
2113
2115
|
These artifacts will be available to all future task executions for this project.`
|
|
2114
2116
|
},
|