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.
- package/package.json +1 -1
- package/src/cli.ts +3 -2
package/package.json
CHANGED
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 #
|
|
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");
|