create-apexjs 0.1.4 → 0.1.5
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/dist/index.js +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -90,8 +90,9 @@ var main = defineCommand({
|
|
|
90
90
|
${installed ? c.green("Ready.") : "Next steps:"}
|
|
91
91
|
${steps.map((s) => ` ${s}`).join("\n")}
|
|
92
92
|
|
|
93
|
-
${c.yellow("
|
|
94
|
-
${c.cyan(
|
|
93
|
+
${c.yellow("Run the CLI with:")} ${c.cyan(runPrefix + " dev")} ${c.dim("(or npx apex dev)")}
|
|
94
|
+
A bare ${c.cyan("apex")} won't resolve \u2014 it's a local dependency, like ${c.cyan("next")} or ${c.cyan("vite")}.
|
|
95
|
+
${c.dim("Prefer a global command? ")}${c.cyan("npm i -g @apex-stack/core")}${c.dim(" \u2192 then `apex dev` works anywhere.")}
|
|
95
96
|
${c.dim("Islands mode:")} ${runPrefix} dev:islands
|
|
96
97
|
${gitOk ? c.dim("Git repository initialized. ") : ""}Your server/api/*.ts routes are also MCP tools at /mcp.
|
|
97
98
|
`);
|