@claudinho/cli 0.8.13 → 0.8.15

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -3
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -4850,8 +4850,9 @@ function matchLine(m, cfg, t2, c, flags = true) {
4850
4850
  } else {
4851
4851
  right = statusToken(m, t2, c);
4852
4852
  }
4853
- const flair = matchFlavor(m, { level: cfg.flavor, locale: cfg.lang });
4854
- const tail = flair ? ` ${c.dim(flair)}` : "";
4853
+ const mexRally = (m.home.code === "MEX" || m.away.code === "MEX") && cfg.flavor !== "off";
4854
+ const flair = mexRally ? "\xBFY si s\xED?" : matchFlavor(m, { level: cfg.flavor, locale: cfg.lang });
4855
+ const tail = flair ? ` ${mexRally ? c.green(flair) : c.dim(flair)}` : "";
4855
4856
  return ` ${left} ${right}${tail}`.trimEnd();
4856
4857
  }
4857
4858
  function header(text, c) {
@@ -6417,7 +6418,7 @@ function handlePipeError(stream) {
6417
6418
  }
6418
6419
  handlePipeError(process.stdout);
6419
6420
  handlePipeError(process.stderr);
6420
- var VERSION = "0.8.13";
6421
+ var VERSION = "0.8.15";
6421
6422
  var DISCLAIMER = "Claudinho is an independent fan project. Not affiliated with or endorsed by FIFA or Anthropic.";
6422
6423
  function ctxFrom(cmd) {
6423
6424
  let root = cmd;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claudinho/cli",
3
- "version": "0.8.13",
3
+ "version": "0.8.15",
4
4
  "description": "Live scores, fixtures, group tables, and read-only prediction-market signals for the 2026 men's football tournament — in your terminal, Claude Code, and Cursor CLI statusline. No API keys. Not affiliated with FIFA or Anthropic.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -61,7 +61,7 @@
61
61
  "tsup": "^8.0.0",
62
62
  "typescript": "^5.7.0",
63
63
  "vitest": "^4.1.9",
64
- "@claudinho/core": "0.8.13"
64
+ "@claudinho/core": "0.8.15"
65
65
  },
66
66
  "scripts": {
67
67
  "build": "tsup",