dlw-machine-setup 0.8.7 → 0.8.9
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/bin/installer.js +4 -2
- package/package.json +1 -1
package/bin/installer.js
CHANGED
|
@@ -5061,12 +5061,14 @@ async function collectInputs(options, releaseVersion, factoryAvailable = false,
|
|
|
5061
5061
|
})),
|
|
5062
5062
|
{ name: "None", value: "none" }
|
|
5063
5063
|
],
|
|
5064
|
-
required: true
|
|
5064
|
+
required: true,
|
|
5065
|
+
loop: false
|
|
5065
5066
|
});
|
|
5066
5067
|
const selectedTechnologies = options.technologies.filter((p) => selectedIds.includes(p.id));
|
|
5067
5068
|
const agent = await esm_default5({
|
|
5068
5069
|
message: "AI coding tool:",
|
|
5069
|
-
choices: options.agents
|
|
5070
|
+
choices: options.agents,
|
|
5071
|
+
loop: false
|
|
5070
5072
|
});
|
|
5071
5073
|
const mcpConfig = buildMCPConfiguration(selectedTechnologies, options.baseMcpServers, options.mcpServers);
|
|
5072
5074
|
let azureDevOpsOrg = "";
|