kavoru 0.8.11 → 0.8.12

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.ts +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kavoru",
3
- "version": "0.8.11",
3
+ "version": "0.8.12",
4
4
  "description": "Scaffold a new Kavoru (Elysia + Bun) backend from the official template",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.ts CHANGED
@@ -156,10 +156,11 @@ export async function runCli(options: CliOptions): Promise<void> {
156
156
  }
157
157
  if (featureSelection.cli) {
158
158
  if (!options.install) {
159
- console.log(" bun run link-cli # once: put kavoru on PATH");
159
+ console.log(" bun run link-cli # optional: put kavoru on PATH");
160
160
  }
161
- console.log(" kavoru module <name>");
161
+ console.log(" kavoru module <name> # generate modules");
162
162
  }
163
+ console.log(" bunx kavoru@latest <dir> # scaffold another project");
163
164
  console.log(" bun run dev");
164
165
  console.log();
165
166
  console.log(" API: http://localhost:3131");