@flydocs/cli 0.5.0-beta.2 → 0.5.0-beta.3
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.js
CHANGED
|
@@ -15,7 +15,7 @@ var CLI_VERSION, CLI_NAME, PACKAGE_NAME;
|
|
|
15
15
|
var init_constants = __esm({
|
|
16
16
|
"src/lib/constants.ts"() {
|
|
17
17
|
"use strict";
|
|
18
|
-
CLI_VERSION = "0.5.0-beta.
|
|
18
|
+
CLI_VERSION = "0.5.0-beta.3";
|
|
19
19
|
CLI_NAME = "flydocs";
|
|
20
20
|
PACKAGE_NAME = "@flydocs/cli";
|
|
21
21
|
}
|
|
@@ -947,12 +947,14 @@ async function promptCommunitySkills(targetDir, stack, autoYes) {
|
|
|
947
947
|
const options = suggestions.map((s) => ({
|
|
948
948
|
value: s,
|
|
949
949
|
label: s.name,
|
|
950
|
-
hint: s.description
|
|
950
|
+
hint: s.description,
|
|
951
|
+
initialValue: true
|
|
951
952
|
}));
|
|
952
953
|
const result = await multiselect({
|
|
953
|
-
message: "Select community skills to install",
|
|
954
|
+
message: "Select community skills to install (space to toggle, enter to confirm)",
|
|
954
955
|
options,
|
|
955
|
-
required: false
|
|
956
|
+
required: false,
|
|
957
|
+
initialValues: suggestions
|
|
956
958
|
});
|
|
957
959
|
if (isCancel(result)) {
|
|
958
960
|
cancel("Skipped community skills");
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.0-beta.
|
|
1
|
+
0.5.0-beta.3
|
package/template/manifest.json
CHANGED