create-foldkit-app 0.5.7 → 0.5.9
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 +9 -8
- package/package.json +1 -1
package/dist/commands/create.js
CHANGED
|
@@ -29,18 +29,19 @@ const runDevServerCommand = (packageManager) => Match.value(packageManager).pipe
|
|
|
29
29
|
const displaySuccessMessage = (name, packageManager) => Effect.gen(function* () {
|
|
30
30
|
yield* Console.log(chalk.bold('All systems nominal.'));
|
|
31
31
|
yield* Console.log('');
|
|
32
|
-
yield* Console.log(` ${chalk.cyan('cd')} ${name}`);
|
|
33
|
-
yield* Console.log(` ${chalk.cyan(runDevServerCommand(packageManager))}`);
|
|
32
|
+
yield* Console.log(` > ${chalk.cyan('cd')} ${name}`);
|
|
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(` ${chalk.cyan('cd')} ${name}`);
|
|
41
|
-
yield* Console.log(` ${chalk.cyan('git
|
|
40
|
+
yield* Console.log(` > ${chalk.cyan('cd')} ${name}`);
|
|
41
|
+
yield* Console.log(` > ${chalk.cyan('git init')}`);
|
|
42
|
+
yield* Console.log(` > ${chalk.cyan('git submodule add https://github.com/foldkit/foldkit.git repos/foldkit')}`);
|
|
42
43
|
yield* Console.log('');
|
|
43
|
-
yield* Console.log(`Details: ${chalk.cyan('foldkit.dev/ai/overview')}`);
|
|
44
|
+
yield* Console.log(` Details: ${chalk.cyan('foldkit.dev/ai/overview')}`);
|
|
44
45
|
yield* Console.log('');
|
|
45
46
|
yield* Console.log('Foldkit is a one-astronaut nights-and-weekends project.\n' +
|
|
46
47
|
'If you have praise or criticism, do share.\n' +
|