@heysalad/cheri-cli 0.6.0 → 0.7.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.
- package/package.json +1 -1
- package/src/commands/login.js +3 -5
- package/src/repl.js +2 -1
package/package.json
CHANGED
package/src/commands/login.js
CHANGED
|
@@ -13,12 +13,10 @@ export async function loginFlow() {
|
|
|
13
13
|
|
|
14
14
|
log.info("Step 1: Open this URL in your browser to authenticate:");
|
|
15
15
|
log.blank();
|
|
16
|
-
console.log(` ${chalk.cyan.underline(`${apiUrl}/auth/github`)}`);
|
|
16
|
+
console.log(` ${chalk.cyan.underline(`${apiUrl}/auth/github?source=cli`)}`);
|
|
17
17
|
log.blank();
|
|
18
|
-
log.info("Step 2: After login,
|
|
19
|
-
|
|
20
|
-
log.blank();
|
|
21
|
-
log.info("Step 3: Copy your API token and paste it below.");
|
|
18
|
+
log.info("Step 2: After GitHub login, your token will be shown automatically.");
|
|
19
|
+
log.info(" Copy it and paste it below.");
|
|
22
20
|
log.blank();
|
|
23
21
|
|
|
24
22
|
const { token } = await inquirer.prompt([
|
package/src/repl.js
CHANGED