@xyleapp/cli 0.4.1 → 0.4.2

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/bin/xyle.mjs CHANGED
@@ -8,7 +8,7 @@ const program = new Command();
8
8
  program
9
9
  .name("xyle")
10
10
  .description("SEO Intelligence Engine CLI")
11
- .version("0.4.1");
11
+ .version("0.4.2");
12
12
 
13
13
  registerCommands(program);
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyleapp/cli",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "CLI for the Xyle SEO Intelligence Engine",
5
5
  "type": "module",
6
6
  "bin": {
package/src/commands.mjs CHANGED
@@ -267,6 +267,7 @@ export function registerCommands(program) {
267
267
  } else {
268
268
  console.log("\x1b[32mLogin successful! Credentials saved.\x1b[0m");
269
269
  }
270
+ process.exit(0);
270
271
  } else {
271
272
  process.stderr.write("\x1b[31mLogin failed.\x1b[0m\n");
272
273
  process.exit(1);