jettypod 4.4.68 → 4.4.69
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/lib/work-commands/index.js +10 -4
- package/package.json +1 -1
|
@@ -1708,12 +1708,15 @@ async function mergeWork(options = {}) {
|
|
|
1708
1708
|
|
|
1709
1709
|
console.log(`✅ Work item #${currentWork.id} marked as done`);
|
|
1710
1710
|
|
|
1711
|
-
// Instruct user to cleanup worktree separately
|
|
1711
|
+
// Instruct user to cleanup worktree separately - be aggressive so AI doesn't forget
|
|
1712
1712
|
if (worktree && worktree.worktree_path && fs.existsSync(worktree.worktree_path)) {
|
|
1713
1713
|
console.log('');
|
|
1714
|
-
console.log('
|
|
1714
|
+
console.log('⚠️ CLEANUP REQUIRED - Run these commands NOW:');
|
|
1715
|
+
console.log('');
|
|
1715
1716
|
console.log(` cd ${gitRoot}`);
|
|
1716
1717
|
console.log(` jettypod work cleanup ${currentWork.id}`);
|
|
1718
|
+
console.log('');
|
|
1719
|
+
console.log(' Worktrees accumulate until cleaned up.');
|
|
1717
1720
|
}
|
|
1718
1721
|
|
|
1719
1722
|
if (withTransition) {
|
|
@@ -2002,12 +2005,15 @@ async function testsMerge(featureId) {
|
|
|
2002
2005
|
console.log('');
|
|
2003
2006
|
console.log(`✅ Test worktree for feature #${featureId} merged successfully`);
|
|
2004
2007
|
|
|
2005
|
-
// Instruct user to cleanup worktree separately
|
|
2008
|
+
// Instruct user to cleanup worktree separately - be aggressive so AI doesn't forget
|
|
2006
2009
|
if (fs.existsSync(worktreePath)) {
|
|
2007
2010
|
console.log('');
|
|
2008
|
-
console.log('
|
|
2011
|
+
console.log('⚠️ CLEANUP REQUIRED - Run these commands NOW:');
|
|
2012
|
+
console.log('');
|
|
2009
2013
|
console.log(` cd ${gitRoot}`);
|
|
2010
2014
|
console.log(` jettypod work cleanup ${featureId}`);
|
|
2015
|
+
console.log('');
|
|
2016
|
+
console.log(' Worktrees accumulate until cleaned up.');
|
|
2011
2017
|
}
|
|
2012
2018
|
|
|
2013
2019
|
return Promise.resolve();
|