totopo 3.2.0-rc-2 → 3.2.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/commands/dev.js +2 -1
- package/package.json +1 -1
package/dist/commands/dev.js
CHANGED
|
@@ -258,8 +258,9 @@ export async function run(packageDir, ctx, options) {
|
|
|
258
258
|
// --- Stale image check - prompt user to rebuild if image is outdated ------------------------------------------------------------------
|
|
259
259
|
let stale = isImageStale(containerName);
|
|
260
260
|
if (stale) {
|
|
261
|
+
log.warn("totopo's latest release includes an updated container image.\n Please rebuild to update — this will not affect agent memory, settings, or your data.");
|
|
261
262
|
const rebuild = await confirm({
|
|
262
|
-
message: "
|
|
263
|
+
message: "Rebuild now? (Recommended)",
|
|
263
264
|
initialValue: true,
|
|
264
265
|
});
|
|
265
266
|
if (isCancel(rebuild)) {
|