multi-agents-cli 1.0.34 → 1.0.35
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/init.js +2 -2
- package/package.json +1 -1
package/init.js
CHANGED
|
@@ -730,7 +730,7 @@ const main = async () => {
|
|
|
730
730
|
}
|
|
731
731
|
}
|
|
732
732
|
|
|
733
|
-
if (
|
|
733
|
+
if (affectedAgents.length > 1) {
|
|
734
734
|
console.log(`\n ${yellow('Dependent processes will also be wiped.')}`);
|
|
735
735
|
}
|
|
736
736
|
|
|
@@ -739,7 +739,7 @@ const main = async () => {
|
|
|
739
739
|
const confirmRes = await prompts({
|
|
740
740
|
type: 'select',
|
|
741
741
|
name: 'value',
|
|
742
|
-
message: '
|
|
742
|
+
message: 'Confirm restart?',
|
|
743
743
|
choices: [
|
|
744
744
|
{ title: 'Yes - wipe and restart', value: 'y' },
|
|
745
745
|
{ title: 'Cancel', value: 'n' },
|
package/package.json
CHANGED