@maka/maka-cli 5.188.0 → 5.189.0

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maka/maka-cli",
3
- "version": "5.188.0",
3
+ "version": "5.189.0",
4
4
  "type": "module",
5
5
  "summary": "A command line tool for scaffolding Meteor 3.x applications using either React.",
6
6
  "description": "A command line tool for scaffolding Meteor 3.x applications using React.",
@@ -643,8 +643,16 @@ export class HackCommand extends BypassCommand {
643
643
  // (commands/disable.ts): the key is turned from in here, the door
644
644
  // swings out there. One mark short says so.
645
645
  if (!device.isOpen()) {
646
+ // THE COLON BELONGS TO THE HINT, not to the sentence (seen in a
647
+ // bench replay, 2026-09-14). hint() returns '' when hints are off
648
+ // -- which is how every bench runs -- and the line printed as
649
+ // "That is enough to command it: " with a dangling colon and
650
+ // nothing after it. Cosmetic, and not harmless: a reviewer who
651
+ // meets a half-written sentence stops trusting the transcript,
652
+ // which is the one thing a bench cannot afford.
653
+ const command = hint(`"disable ${device.name}" (Control Device, p.238) ${device.opensExit ? `opens the ${device.opensExit} way` : `works it`} from right here.`);
646
654
  lines.push(now >= 2
647
- ? ` That is enough to command it: ${hint(`"disable ${device.name}" (Control Device, p.238) ${device.opensExit ? `opens the ${device.opensExit} way` : `works it`} from right here.`)}`
655
+ ? ` That is enough to command it${command ? `: ${command}` : '.'}`
648
656
  : ` One more mark and it takes orders.${hint(` ("hack ${device.name}" again, then "disable ${device.name}" -- Control Device wants 2 marks for a Simple device action, p.238.)`)}`);
649
657
  }
650
658
  this.scene.updateStatus();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maka/maka-cli",
3
- "version": "5.188.0",
3
+ "version": "5.189.0",
4
4
  "type": "module",
5
5
  "summary": "A command line tool for scaffolding Meteor 3.x applications using either React.",
6
6
  "description": "A command line tool for scaffolding Meteor 3.x applications using React.",