bf-skills 1.3.0 → 1.3.2
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/cli.mjs +4 -4
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -332,7 +332,7 @@ async function runInstall(source, opts) {
|
|
|
332
332
|
(a) => isGlobal ? path4.join(os3.homedir(), a.globalPath) : path4.join(process.cwd(), a.projectPath)
|
|
333
333
|
)
|
|
334
334
|
);
|
|
335
|
-
if (!opts.yes && !opts.agent
|
|
335
|
+
if (!opts.yes && !opts.agent) {
|
|
336
336
|
const modeChoice = await p.select({
|
|
337
337
|
message: "Installation method",
|
|
338
338
|
options: [
|
|
@@ -396,11 +396,11 @@ async function runInstall(source, opts) {
|
|
|
396
396
|
} else if (opts.yes) {
|
|
397
397
|
selectedSkills = allSkills;
|
|
398
398
|
} else {
|
|
399
|
-
const selected = await p.
|
|
400
|
-
message: `Pick skills to install (${allSkills.length} available
|
|
399
|
+
const selected = await p.multiselect({
|
|
400
|
+
message: `Pick skills to install (${allSkills.length} available)`,
|
|
401
401
|
options: allSkills.map((s) => ({
|
|
402
402
|
value: s.name,
|
|
403
|
-
label: `${skillEmoji(s.name)} ${
|
|
403
|
+
label: `${skillEmoji(s.name)} ${s.name}`,
|
|
404
404
|
hint: s.description
|
|
405
405
|
})),
|
|
406
406
|
required: true
|