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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-forgeon",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "description": "Forgeon project generator CLI",
5
5
  "license": "MIT",
6
6
  "author": "Forgeon",
@@ -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: '__cancel',
105
+ defaultValue: providers[0].id,
106
106
  choices,
107
107
  });
108
108
 
@@ -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: 'cancel',
150
+ defaultValue: 'apply',
151
151
  choices: [
152
152
  { label: 'Yes, apply install plan', value: 'apply' },
153
153
  { label: 'Cancel', value: 'cancel' },
@@ -28,3 +28,4 @@ export function parseFilesEnv(input: Record<string, string | undefined>): FilesE
28
28
  }
29
29
 
30
30
  export const filesEnvSchemaZod = filesEnvSchema;
31
+ export { filesEnvSchema };