Skip to content

Commit 56ca5e0

Browse files
authored
Show resolvable url in error message (#596)
Before the urls in our error messages pointed to a doc page that doesn't exist. This change updates the urls with links that resolve to dashboard also adds note on how to create changesets
1 parent ee90cd2 commit 56ca5e0

File tree

3 files changed

+40
-16
lines changed

3 files changed

+40
-16
lines changed

.changeset/sweet-geese-yell.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@e2b/cli': patch
3+
---
4+
5+
Before the urls in our error messages pointed to a doc page that doesn't exist. This change updates the urls with links that resolve to dashboard

DEV.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Releasing e2b cli
2+
3+
to create a changeset run `npx changeset`

packages/cli/src/api.ts

+32-16
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,40 @@ import { asBold, asPrimary } from './utils/format'
77
export let apiKey = process.env.E2B_API_KEY
88
export let accessToken = process.env.E2B_ACCESS_TOKEN
99

10-
const authErrorBox =(keyName: string) => boxen.default(
11-
`You must be logged in to use this command. Run ${asBold('e2b auth login')}.
10+
const authErrorBox = (keyName: string) => {
11+
let link
12+
let msg
13+
switch (keyName) {
14+
case 'E2B_API_KEY':
15+
link = 'https://e2b.dev/dashboard?tab=keys'
16+
msg = 'API key'
1217

13-
If you are seeing this message in CI/CD you may need to set the ${asBold(
14-
`${keyName}`
15-
)} environment variable.
16-
Visit ${asPrimary(
17-
'https://e2b.dev/docs/getting-started/api-key'
18-
)} to get the access token.`,
19-
{
20-
width: 70,
21-
float: 'center',
22-
padding: 0.5,
23-
margin: 1,
24-
borderStyle: 'round',
25-
borderColor: 'redBright',
18+
case 'E2B_ACCESS_TOKEN':
19+
link = 'https://e2b.dev/dashboard?tab=personal'
20+
msg = 'access token'
21+
}
22+
// throwing error in default in switch statement results in unreachable code,
23+
// so we need to check if link and msg are defined here instead
24+
if (!link || !msg) {
25+
throw new Error(`Unknown key name: ${keyName}`)
2626
}
27-
)
27+
return boxen.default(
28+
`You must be logged in to use this command. Run ${asBold('e2b auth login')}.
29+
30+
If you are seeing this message in CI/CD you may need to set the ${asBold(
31+
`${keyName}`
32+
)} environment variable.
33+
Visit ${asPrimary(link)} to get the ${msg}.`,
34+
{
35+
width: 70,
36+
float: 'center',
37+
padding: 0.5,
38+
margin: 1,
39+
borderStyle: 'round',
40+
borderColor: 'redBright',
41+
}
42+
)
43+
}
2844

2945
export function ensureAPIKey() {
3046
// If apiKey is not already set (either from env var or from user config), try to get it from config file

0 commit comments

Comments
 (0)