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.
Files changed (2) hide show
  1. package/dist/index.js +3 -2
  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("Note:")} ${c.cyan("apex")} is a project command, not a global one \u2014 run it as
94
- ${c.cyan(runPrefix + " dev")} (or ${c.cyan("npx apex dev")}), never a bare "apex".
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
  `);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-apexjs",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Scaffold a new Apex JS app",
5
5
  "type": "module",
6
6
  "license": "MIT",