create-foldkit-app 0.5.7 → 0.5.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/dist/commands/create.js +6 -6
- package/package.json +1 -1
package/dist/commands/create.js
CHANGED
|
@@ -32,15 +32,15 @@ const displaySuccessMessage = (name, packageManager) => Effect.gen(function* ()
|
|
|
32
32
|
yield* Console.log(` ${chalk.cyan('cd')} ${name}`);
|
|
33
33
|
yield* Console.log(` ${chalk.cyan(runDevServerCommand(packageManager))}`);
|
|
34
34
|
yield* Console.log('');
|
|
35
|
-
yield* Console.log(chalk.bold('AI-
|
|
35
|
+
yield* Console.log(chalk.bold('AI-Assisted Development'));
|
|
36
36
|
yield* Console.log('');
|
|
37
|
-
yield* Console.log('Clone Foldkit as a submodule so your AI assistant can\n' +
|
|
38
|
-
'reference the source, examples, and documentation:');
|
|
37
|
+
yield* Console.log(' Clone Foldkit as a submodule so your AI assistant can\n' +
|
|
38
|
+
' reference the source, examples, and documentation:');
|
|
39
39
|
yield* Console.log('');
|
|
40
|
-
yield* Console.log(`
|
|
41
|
-
yield* Console.log(`
|
|
40
|
+
yield* Console.log(` ${chalk.cyan('cd')} ${name}`);
|
|
41
|
+
yield* Console.log(` ${chalk.cyan('git submodule add https://github.com/foldkit/foldkit.git repos/foldkit')}`);
|
|
42
42
|
yield* Console.log('');
|
|
43
|
-
yield* Console.log(`Details: ${chalk.cyan('foldkit.dev/ai/overview')}`);
|
|
43
|
+
yield* Console.log(` Details: ${chalk.cyan('foldkit.dev/ai/overview')}`);
|
|
44
44
|
yield* Console.log('');
|
|
45
45
|
yield* Console.log('Foldkit is a one-astronaut nights-and-weekends project.\n' +
|
|
46
46
|
'If you have praise or criticism, do share.\n' +
|