byterover-cli 1.0.2 → 1.0.3

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.
@@ -109,8 +109,7 @@ export class InitUseCase {
109
109
  const { spaces } = await this.spaceService.getSpaces(token.accessToken, token.sessionKey, team.id, { fetchAll: true });
110
110
  this.terminal.actionStop();
111
111
  if (spaces.length === 0) {
112
- this.terminal.log(`No spaces found in team "${team.getDisplayName()}"`);
113
- this.terminal.log(`Please visit ${getCurrentConfig().webAppUrl} to create your first space for ${team.getDisplayName()}.`);
112
+ this.terminal.error(`No spaces found in team "${team.getDisplayName()}"\nPlease visit ${getCurrentConfig().webAppUrl} to create your first space for ${team.getDisplayName()}.`);
114
113
  return undefined;
115
114
  }
116
115
  this.terminal.log();
@@ -121,8 +120,7 @@ export class InitUseCase {
121
120
  const { teams } = await this.teamService.getTeams(token.accessToken, token.sessionKey, { fetchAll: true });
122
121
  this.terminal.actionStop();
123
122
  if (teams.length === 0) {
124
- this.terminal.log('No teams found.');
125
- this.terminal.log(`Please visit ${getCurrentConfig().webAppUrl} to create your first team.`);
123
+ this.terminal.error(`No teams found.\nPlease visit ${getCurrentConfig().webAppUrl} to create your first team.`);
126
124
  return undefined;
127
125
  }
128
126
  this.terminal.log();
@@ -198,5 +198,5 @@
198
198
  ]
199
199
  }
200
200
  },
201
- "version": "1.0.2"
201
+ "version": "1.0.3"
202
202
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "byterover-cli",
3
3
  "description": "ByteRover's CLI",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "author": "ByteRover",
6
6
  "bin": {
7
7
  "brv": "./bin/run.js"