icoa-cli 2.19.73 → 2.19.74
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/exam.js +3 -3
- package/package.json +1 -1
package/dist/commands/exam.js
CHANGED
|
@@ -342,10 +342,10 @@ function printQuestionProgress(current, total, answered) {
|
|
|
342
342
|
console.log(` ${chalk.gray('⏱ Time remaining:')} ${color(timeStr)} ${chalk.gray('(server-authoritative)')}`);
|
|
343
343
|
}
|
|
344
344
|
}
|
|
345
|
-
// Help budget per exam.md §3:
|
|
345
|
+
// Help budget per exam.md §3: 20 base + 10 hidden bonus (unlocked via `more help`).
|
|
346
346
|
// Demo still uses the lighter 5 + 3 set via _helpMax overrides at demo start.
|
|
347
|
-
const HELP_BASE =
|
|
348
|
-
const HELP_WITH_BONUS =
|
|
347
|
+
const HELP_BASE = 20;
|
|
348
|
+
const HELP_WITH_BONUS = 30;
|
|
349
349
|
function getHelpState(state) {
|
|
350
350
|
return {
|
|
351
351
|
used: state._helpUsed || 0,
|