create-foldkit-app 0.5.8 → 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.
@@ -29,16 +29,17 @@ 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
35
  yield* Console.log(chalk.bold('AI-Assisted Development'));
36
36
  yield* Console.log('');
37
37
  yield* Console.log(' Clone Foldkit as a submodule so your AI assistant can\n' +
38
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 submodule add https://github.com/foldkit/foldkit.git repos/foldkit')}`);
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
44
  yield* Console.log(` Details: ${chalk.cyan('foldkit.dev/ai/overview')}`);
44
45
  yield* Console.log('');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-foldkit-app",
3
- "version": "0.5.8",
3
+ "version": "0.5.9",
4
4
  "description": "Create Foldkit applications",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",