totopo 0.1.5 → 0.1.6
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/package.json +1 -1
- package/src/core/reset.ts +2 -2
package/package.json
CHANGED
package/src/core/reset.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// =========================================================================================================================================
|
|
3
3
|
// scripts/reset.ts — Full reset: delete all totopo workspaces and Docker images
|
|
4
4
|
// Called by ai.sh — do not run directly.
|
|
5
|
-
// Run '
|
|
5
|
+
// Run 'npx totopo' → Start session after this to get a fresh build.
|
|
6
6
|
// =========================================================================================================================================
|
|
7
7
|
|
|
8
8
|
import { spawnSync } from "node:child_process";
|
|
@@ -51,4 +51,4 @@ if (imageIds.length > 0) {
|
|
|
51
51
|
spawnSync("docker", ["image", "prune", "--force"], { stdio: "inherit" });
|
|
52
52
|
|
|
53
53
|
// ─── Done ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
|
|
54
|
-
outro("Reset complete. Run '
|
|
54
|
+
outro("Reset complete. Run 'npx totopo' and select 'Start session' to start fresh.");
|