@base44-preview/cli 0.0.17-pr.95.8b29052 → 0.0.17-pr.95.b10f652
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -38201,8 +38201,8 @@ async function executeCreate({ template, name: rawName, description, projectPath
|
|
|
38201
38201
|
} else if (skills) selectedAgents = SUPPORTED_AGENTS.map((agent) => agent.value);
|
|
38202
38202
|
if (selectedAgents.length > 0) {
|
|
38203
38203
|
const agentArgs = selectedAgents.flatMap((agent) => ["-a", agent]);
|
|
38204
|
-
M.step(
|
|
38205
|
-
await runTask(
|
|
38204
|
+
M.step(`Installing skills for: ${selectedAgents.join(", ")}`);
|
|
38205
|
+
await runTask(`Installing skills for: ${selectedAgents.join(", ")}`, async () => {
|
|
38206
38206
|
await execa("npx", [
|
|
38207
38207
|
"-y",
|
|
38208
38208
|
"add-skill",
|