create-forgeon 0.3.7 → 0.3.8
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/package.json
CHANGED
|
@@ -102,7 +102,7 @@ async function selectProviderForCapability({
|
|
|
102
102
|
|
|
103
103
|
const picked = await promptSelectImpl({
|
|
104
104
|
message: `Module "${moduleId}" requires capability: ${capabilityId}`,
|
|
105
|
-
defaultValue:
|
|
105
|
+
defaultValue: providers[0].id,
|
|
106
106
|
choices,
|
|
107
107
|
});
|
|
108
108
|
|
package/src/run-add-module.mjs
CHANGED
|
@@ -147,7 +147,7 @@ async function confirmInstallPlan(moduleSequence, requestedModuleId) {
|
|
|
147
147
|
printInstallPlan(moduleSequence);
|
|
148
148
|
const picked = await promptSelect({
|
|
149
149
|
message: `Apply now for "${requestedModuleId}"?`,
|
|
150
|
-
defaultValue: '
|
|
150
|
+
defaultValue: 'apply',
|
|
151
151
|
choices: [
|
|
152
152
|
{ label: 'Yes, apply install plan', value: 'apply' },
|
|
153
153
|
{ label: 'Cancel', value: 'cancel' },
|