servyx-cli 0.1.5 → 0.1.6

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "servyx-cli",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Servyx CLI — Upload local projects and deploy via the Servyx platform",
5
5
  "type": "module",
6
6
  "bin": {
@@ -50,5 +50,5 @@ export async function runLink(options = {}) {
50
50
  });
51
51
 
52
52
  console.log(pc.green(`Linked ${app.name} (${app.system_username})`));
53
- console.log(pc.dim(`Wrote servyx.json in ${cwd}`));
53
+ // console.log(pc.dim(`Wrote servyx.json in ${cwd}`));
54
54
  }
@@ -63,5 +63,5 @@ export async function runLogin(options = {}) {
63
63
 
64
64
  setAuth({ token, apiUrl, user });
65
65
  console.log(pc.green(`Logged in as ${user?.username || user?.email || username}`));
66
- console.log(pc.dim(`API: ${apiUrl}`));
66
+ // console.log(pc.dim(`API: ${apiUrl}`));
67
67
  }