icoa-cli 2.19.48 → 2.19.49
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/commands/setup.js +1 -1
- package/dist/repl.js +1 -1
- package/package.json +1 -1
package/dist/commands/setup.js
CHANGED
|
@@ -37,7 +37,7 @@ export function registerSetupCommand(program) {
|
|
|
37
37
|
const newMode = await select({
|
|
38
38
|
message: 'Select mode:',
|
|
39
39
|
choices: [
|
|
40
|
-
{ name: 'National Selection —
|
|
40
|
+
{ name: 'National Selection — demo, exam, lightweight', value: 'selection' },
|
|
41
41
|
{ name: 'International Olympiad — Full CTF with AI assistance', value: 'olympiad' },
|
|
42
42
|
{ name: 'National/Regional Partner — Organizer management', value: 'organizer' },
|
|
43
43
|
],
|
package/dist/repl.js
CHANGED
|
@@ -95,7 +95,7 @@ export async function startRepl(program, resumeMode) {
|
|
|
95
95
|
const { select: selectMode, confirm: confirmMode } = await import('@inquirer/prompts');
|
|
96
96
|
const savedMode = config.mode || '';
|
|
97
97
|
const modeChoices = [
|
|
98
|
-
{ name: ` ${chalk.bold('National Selection')} ${chalk.gray('·')} ${chalk.gray('
|
|
98
|
+
{ name: ` ${chalk.bold('National Selection')} ${chalk.gray('·')} ${chalk.gray('demo, exam, lightweight')}`, value: 'selection' },
|
|
99
99
|
{ name: ` ${chalk.bold('International Olympiad')} ${chalk.gray('·')} ${chalk.gray('CTF x AI (~500MB)')}`, value: 'olympiad' },
|
|
100
100
|
{ name: ` ${chalk.bold('National/Regional Partner')} ${chalk.gray('·')} ${chalk.gray('Organizer management')}`, value: 'organizer' },
|
|
101
101
|
{ name: ` ${chalk.gray('About ICOA')} ${chalk.gray('·')} ${chalk.gray('Info & contact')}`, value: 'about' },
|