icoa-cli 2.16.12 → 2.16.13
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 +8 -7
- package/package.json +1 -1
package/dist/commands/exam.js
CHANGED
|
@@ -66,14 +66,15 @@ function printHowToPlay() {
|
|
|
66
66
|
console.log(chalk.gray(' ru · hi · de · id · th · vi · tr'));
|
|
67
67
|
console.log(chalk.gray(' ─────────────────────────────────────────'));
|
|
68
68
|
}
|
|
69
|
-
// Australian easter eggs every
|
|
69
|
+
// Australian easter eggs every 3 questions (for 15-question demo)
|
|
70
70
|
const EASTER_EGGS = {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
71
|
+
3: { emoji: '🏛️', text: 'Sydney Opera House — Great start!' },
|
|
72
|
+
5: { emoji: '🐨', text: 'A koala says g\'day — 1/3 done!' },
|
|
73
|
+
7: { emoji: '🌉', text: 'Sydney Harbour Bridge — Keep going!' },
|
|
74
|
+
9: { emoji: '🦘', text: 'A kangaroo hops by — past halfway!' },
|
|
75
|
+
11: { emoji: '🏖️', text: 'Bondi Beach — almost there!' },
|
|
76
|
+
13: { emoji: '🦈', text: 'Great Barrier Reef — 2 more to go!' },
|
|
77
|
+
15: { emoji: '🎉', text: 'G\'day mate! All done! 🇦🇺' },
|
|
77
78
|
};
|
|
78
79
|
function printQuestionProgress(current, total, answered) {
|
|
79
80
|
const width = 30;
|