icoa-cli 1.6.1 → 1.6.2
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/index.js +1 -1
- package/dist/repl.js +6 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -36,7 +36,7 @@ ${LINE}
|
|
|
36
36
|
${chalk.white('Sydney, Australia')} ${chalk.gray('Jun 27 - Jul 2, 2026')}
|
|
37
37
|
${chalk.cyan.underline('https://icoa2026.au')}
|
|
38
38
|
|
|
39
|
-
${chalk.gray('CLI-Native Competition Terminal v1.6.
|
|
39
|
+
${chalk.gray('CLI-Native Competition Terminal v1.6.2')}
|
|
40
40
|
|
|
41
41
|
${LINE}
|
|
42
42
|
`;
|
package/dist/repl.js
CHANGED
|
@@ -6,7 +6,7 @@ import { isActivated, activateToken, isFreeCommand, isDeviceMatch, recordExit, r
|
|
|
6
6
|
import { resetTerminalTheme } from './lib/theme.js';
|
|
7
7
|
import { ensureSandbox, runInSandbox, isDockerAvailable } from './lib/sandbox.js';
|
|
8
8
|
const INTERCEPT = '__REPL_NO_EXIT__';
|
|
9
|
-
const VERSION = '1.6.
|
|
9
|
+
const VERSION = '1.6.2';
|
|
10
10
|
export async function startRepl(program, resumeMode) {
|
|
11
11
|
const config = getConfig();
|
|
12
12
|
const connected = isConnected();
|
|
@@ -37,7 +37,11 @@ export async function startRepl(program, resumeMode) {
|
|
|
37
37
|
console.log(chalk.yellow(` ${missing} core libraries missing.`));
|
|
38
38
|
try {
|
|
39
39
|
const { confirm } = await import('@inquirer/prompts');
|
|
40
|
-
const yes = await confirm({
|
|
40
|
+
const yes = await confirm({
|
|
41
|
+
message: ' Install competition Python libraries now?',
|
|
42
|
+
default: true,
|
|
43
|
+
theme: { prefix: '', style: { message: (t) => chalk.green(t), defaultAnswer: (t) => chalk.green(t) } },
|
|
44
|
+
});
|
|
41
45
|
if (yes) {
|
|
42
46
|
console.log();
|
|
43
47
|
// Trigger env setup
|