@jskit-ai/create-app 0.1.19 → 0.1.21
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 +1 -1
- package/src/server/index.js +8 -2
package/package.json
CHANGED
package/src/server/index.js
CHANGED
|
@@ -609,8 +609,14 @@ export async function runCli(
|
|
|
609
609
|
stdout.write(`- ${command}\n`);
|
|
610
610
|
}
|
|
611
611
|
} else {
|
|
612
|
-
stdout.write("
|
|
613
|
-
stdout.write("
|
|
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
|
|