projax 3.3.9 → 3.3.11

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 +6 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -199,6 +199,9 @@ function displayLogo() {
199
199
  return `
200
200
  PROJAX ${packageJson.version}
201
201
 
202
+ Command line not your thing? Try our native desktop app:
203
+ → prx web
204
+
202
205
  `;
203
206
  return `
204
207
  ╔═══════════════════════════════════════════════════════╗
@@ -223,11 +226,11 @@ program
223
226
  .description('Project management dashboard CLI')
224
227
  .version(packageJson.version)
225
228
  .addHelpText('beforeAll', displayLogo());
226
- // Interactive terminal UI command
229
+ // Interactive terminal UI command (hidden - in beta)
227
230
  program
228
- .command('prxi')
231
+ .command('prxi', { hidden: true }) // Hide from help output while in beta
229
232
  .alias('i')
230
- .description('Launch interactive terminal UI')
233
+ .description('Launch interactive terminal UI (beta)')
231
234
  .action(async () => {
232
235
  try {
233
236
  await ensureAPIServerRunning(true);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "projax",
3
- "version": "3.3.9",
3
+ "version": "3.3.11",
4
4
  "description": "Cross-platform project management dashboard for tracking local development projects. Features CLI, Terminal UI, Desktop app, REST API, and built-in tools for test detection, port management, and script execution.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {