bonzai-burn 1.0.61 → 1.0.63
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/bburn.js +1 -1
- package/dist/index.js +5 -2
- package/package.json +1 -1
package/dist/bburn.js
CHANGED
|
@@ -50,7 +50,7 @@ async function main() {
|
|
|
50
50
|
// Copy to clipboard
|
|
51
51
|
try {
|
|
52
52
|
execSync('pbcopy', { input: output });
|
|
53
|
-
console.log('
|
|
53
|
+
console.log('Issues copied to clipboard. Run "claude" to implement.\n');
|
|
54
54
|
} catch {
|
|
55
55
|
console.log('Copy the above and give to Claude.\n');
|
|
56
56
|
}
|
package/dist/index.js
CHANGED
|
@@ -496,7 +496,7 @@ async function main() {
|
|
|
496
496
|
`);
|
|
497
497
|
try {
|
|
498
498
|
execSync("pbcopy", { input: output });
|
|
499
|
-
console.log(
|
|
499
|
+
console.log('Issues copied to clipboard. Run "claude" to implement.\n');
|
|
500
500
|
} catch {
|
|
501
501
|
console.log("Copy the above and give to Claude.\n");
|
|
502
502
|
}
|
|
@@ -869,7 +869,10 @@ function init() {
|
|
|
869
869
|
copyFileSync(join(TEMPLATE_DIR2, "config.json"), join(bonzaiPath, "config.json"));
|
|
870
870
|
console.log(`Created ${BONZAI_DIR3}/ folder with config.json`);
|
|
871
871
|
console.log(`Edit ${BONZAI_DIR3}/config.json to configure your burn rules`);
|
|
872
|
-
console.log(
|
|
872
|
+
console.log("");
|
|
873
|
+
console.log(" --------------------------------------------------------");
|
|
874
|
+
console.log("| Run npx bonzai-burn -b to find tech debt in codebase |");
|
|
875
|
+
console.log(" --------------------------------------------------------");
|
|
873
876
|
}
|
|
874
877
|
async function main4() {
|
|
875
878
|
const args = process.argv.slice(2);
|