icoa-cli 2.14.0 → 2.14.1
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/dist/repl.js +2 -3
- package/package.json +1 -1
package/dist/repl.js
CHANGED
|
@@ -178,12 +178,11 @@ export async function startRepl(program, resumeMode) {
|
|
|
178
178
|
const modeLabel = chalk.cyan.bold('[Selection Mode]');
|
|
179
179
|
console.log(' ' + modeLabel);
|
|
180
180
|
console.log();
|
|
181
|
+
console.log(chalk.white(' Ready to start? Just type ') + chalk.bold.cyan('demo') + chalk.white(' and press ') + chalk.yellow('Enter') + chalk.white('!'));
|
|
182
|
+
console.log();
|
|
181
183
|
console.log(chalk.gray(' ─────────────────────────────────────────────'));
|
|
182
184
|
console.log(chalk.bold.cyan(' demo') + chalk.gray(' Free practice exam (30 questions)'));
|
|
183
|
-
console.log(chalk.gray(' No account needed. Try it now!'));
|
|
184
|
-
console.log();
|
|
185
185
|
console.log(chalk.white(' exam <token>') + chalk.gray(' Enter exam with access token'));
|
|
186
|
-
console.log(chalk.gray(' Provided by your proctor.'));
|
|
187
186
|
console.log(chalk.gray(' ─────────────────────────────────────────────'));
|
|
188
187
|
console.log();
|
|
189
188
|
}
|