@rallycry/conveyor-agent 5.12.0 → 5.13.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/{chunk-SQJJL2PU.js → chunk-4RFYCO2T.js} +194 -58
- package/dist/chunk-4RFYCO2T.js.map +1 -0
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-SQJJL2PU.js.map +0 -1
package/dist/cli.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -377,6 +377,10 @@ declare class ProjectConnection {
|
|
|
377
377
|
}
|
|
378
378
|
|
|
379
379
|
declare function ensureWorktree(projectDir: string, taskId: string, branch?: string): string;
|
|
380
|
+
/**
|
|
381
|
+
* Force-remove is intentional: this runs after task completion or explicit stop.
|
|
382
|
+
* Any uncommitted changes at this point are scratch artifacts, not valuable work.
|
|
383
|
+
*/
|
|
380
384
|
declare function removeWorktree(projectDir: string, taskId: string): void;
|
|
381
385
|
|
|
382
386
|
interface CacheEntry {
|
package/dist/index.js
CHANGED