@jskit-ai/create-app 0.1.19 → 0.1.20

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": "@jskit-ai/create-app",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "description": "Scaffold minimal JSKIT app shells.",
5
5
  "type": "module",
6
6
  "files": [
@@ -609,8 +609,14 @@ export async function runCli(
609
609
  stdout.write(`- ${command}\n`);
610
610
  }
611
611
  } else {
612
- stdout.write("Add framework capabilities when ready:\n");
613
- stdout.write("- npx jskit add auth-base --no-install\n");
612
+ stdout.write("First of all run npm install.:\n");
613
+ stdout.write("Then add framework capabilities:\n");
614
+ stdout.write("- npx jskit add package shell-web --no-install\n");
615
+ stdout.write("- npx jskit list\n");
616
+ stdout.write("Run server and client to see it in action:\n");
617
+ stdout.write("- npm run dev\n");
618
+ stdout.write("- npx run server\n");
619
+
614
620
  }
615
621
  }
616
622