@nolimitcli/cli 1.1.0 → 1.2.0

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 +1 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -17,7 +17,7 @@ const program = new Command();
17
17
  program
18
18
  .name('nolimit')
19
19
  .description('No subscription. Just code.')
20
- .version('1.1.0');
20
+ .version('1.2.0');
21
21
  // Auth command - register and get API key
22
22
  program
23
23
  .command('auth')
@@ -41,8 +41,6 @@ program
41
41
  config.set('sessionId', data.sessionId);
42
42
  config.set('apiKey', data.apiKey);
43
43
  spinner.succeed(chalk.green('Authenticated'));
44
- console.log();
45
- console.log(chalk.dim('Session:'), data.sessionId.slice(0, 8) + '...');
46
44
  if (data.welcomeBonus > 0) {
47
45
  console.log(chalk.green(`+${data.welcomeBonus.toLocaleString()}`), 'welcome tokens');
48
46
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nolimitcli/cli",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "type": "module",
5
5
  "description": "No subscription. Just code. Watch an ad, build without limits.",
6
6
  "main": "dist/index.js",